my nix dotfiles
5
fork

Configure Feed

Select the types of activity you want to include in your feed.

nix/{denna,iso,sini}: disable systemd wait-online

+3
+1
hosts/denna/configuration.nix
··· 9 9 10 10 boot.loader.systemd-boot.enable = true; 11 11 boot.loader.efi.canTouchEfiVariables = true; 12 + systemd.network.wait-online.enable = false; 12 13 13 14 networking.hostName = "denna"; 14 15 networking.networkmanager.enable = true;
+1
hosts/iso/configuration.nix
··· 9 9 10 10 boot.loader.systemd-boot.enable = true; 11 11 boot.loader.efi.canTouchEfiVariables = true; 12 + systemd.network.wait-online.enable = false; 12 13 13 14 networking.hostName = "iso"; 14 15 networking.networkmanager.enable = true;
+1
hosts/sini/configuration.nix
··· 9 9 10 10 boot.loader.systemd-boot.enable = true; 11 11 boot.loader.efi.canTouchEfiVariables = true; 12 + systemd.network.wait-online.enable = false; 12 13 13 14 networking.hostName = "sini"; # Define your hostname. 14 15