summary refs log tree commit diff
path: root/profiles
diff options
context:
space:
mode:
Diffstat (limited to 'profiles')
-rw-r--r--profiles/network.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/profiles/network.nix b/profiles/network.nix
index 1fe645b..5196f0b 100644
--- a/profiles/network.nix
+++ b/profiles/network.nix
@@ -15,7 +15,8 @@
         allowedTCPPorts = [];
         checkReversePath = "loose";
       };
-      networkmanager.enable = true;
+      # kill yourself
+      # networkmanager.enable = true;
       nameservers = ["127.0.0.1" "::1"];
       extraHosts = ''
         100.99.246.128 pc
@@ -30,7 +31,7 @@
     # https://old.reddit.com/r/NixOS/comments/vdz86j/how_to_remove_boot_dependency_on_network_for_a
     systemd = {
       targets.network-online.wantedBy = pkgs.lib.mkForce []; # Normally ["multi-user.target"]
-      services.NetworkManager-wait-online.wantedBy = pkgs.lib.mkForce []; # Normally ["network-online.target"]
+      # services.NetworkManager-wait-online.wantedBy = pkgs.lib.mkForce []; # Normally ["network-online.target"]
       services.systemd-networkd-wait-online.wantedBy = pkgs.lib.mkForce [];
     };