diff options
| author | Tim Keller <tjk@tjkeller.xyz> | 2026-06-14 13:39:16 -0500 |
|---|---|---|
| committer | Tim Keller <tjk@tjkeller.xyz> | 2026-06-14 13:39:16 -0500 |
| commit | 6451ea9aee5adb416570e6756402303d0c2e3554 (patch) | |
| tree | bfa912f647768ff6dc638fa047547ea7b396e497 /hosts/poweredge/jellyfin.nix | |
| parent | ee78434183f94624fb25640a76b571c00e67e1b0 (diff) | |
| download | nixos-6451ea9aee5adb416570e6756402303d0c2e3554.tar.xz nixos-6451ea9aee5adb416570e6756402303d0c2e3554.zip | |
fix default gateway for router and assign mac addresses for all containers
Diffstat (limited to 'hosts/poweredge/jellyfin.nix')
| -rw-r--r-- | hosts/poweredge/jellyfin.nix | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/hosts/poweredge/jellyfin.nix b/hosts/poweredge/jellyfin.nix index 84f3ec0..92412f8 100644 --- a/hosts/poweredge/jellyfin.nix +++ b/hosts/poweredge/jellyfin.nix @@ -2,10 +2,8 @@ containers.jellyfin = { autoStart = true; privateNetwork = true; - extraVeths.vb-jellyfin = { - hostBridge = "br-lan0"; - #localMacAddress = "02:00:00:00:00:02"; # TODO update to 26.05 - }; + hostBridge = "br-lan0"; + localMacAddress = "02:00:00:00:00:02"; bindMounts = { "/media" = { hostPath = "/media/ingens/media"; @@ -32,7 +30,7 @@ config = { lib, config, ... }: { # Network - networking.interfaces.vb-jellyfin.useDHCP = true; + networking.interfaces.eth0.useDHCP = true; networking.firewall.allowedTCPPorts = [ 80 ]; # Caddy # CUDA |
