diff --git a/nalai/etc/nixos/configuration.nix b/nalai/etc/nixos/configuration.nix index f877be3..9241a4b 100644 --- a/nalai/etc/nixos/configuration.nix +++ b/nalai/etc/nixos/configuration.nix @@ -167,8 +167,6 @@ # Enable the OpenSSH daemon. # services.openssh.enable = true; - - systemd.network.enable = true; # Open ports in the firewall. networking.firewall.allowedTCPPorts = [ 5353 50007 ]; networking.firewall.allowedUDPPorts = [ 5353 50007 ]; @@ -183,6 +181,9 @@ # (e.g. man configuration.nix or on https://nixos.org/nixos/options.html). system.stateVersion = "24.05"; # Did you read the comment? + systemd.network.enable = true; + systemd.network.wait-online.enable = false; + virtualisation.docker.enable = false; virtualisation.podman.enable = true; }