15 lines
286 B
Nix
15 lines
286 B
Nix
|
{ ... }:
|
||
|
{
|
||
|
imports = [
|
||
|
./jellyfin.nix
|
||
|
];
|
||
|
|
||
|
networking = {
|
||
|
nat = {
|
||
|
enable = true;
|
||
|
internalInterfaces = ["ve-*"];
|
||
|
externalInterface = "wlp2s0";
|
||
|
};
|
||
|
networkmanager.unmanaged = [ "interface-name:ve-*" ];
|
||
|
};
|
||
|
}
|