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.
This commit is contained in:
Donovan Glover 2025-01-27 11:22:05 -05:00
parent c8a20d24ee
commit 421d0a1b03
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65

View File

@ -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, ... }: