From 421d0a1b033e63c61d065a80c78dc426fb8a94bf Mon Sep 17 00:00:00 2001 From: Donovan Glover Date: Mon, 27 Jan 2025 11:22:05 -0500 Subject: [PATCH] containers: drop privateNetwork At some point this broke and I haven't been able to find any leads on why it broke, so the container now has access to host networking. --- modules/containers.nix | 4 ---- 1 file changed, 4 deletions(-) diff --git a/modules/containers.nix b/modules/containers.nix index 94094dab..17d1d4b7 100644 --- a/modules/containers.nix +++ b/modules/containers.nix @@ -12,7 +12,6 @@ let inherit (config.boot) enableContainers; template = { - privateNetwork = true; ephemeral = true; restartIfChanged = false; @@ -57,9 +56,6 @@ in containers = mkIf enableContainers { wine = template // { - hostAddress = "192.168.100.34"; - localAddress = "192.168.100.49"; - config = { nix-config, pkgs, ... }: