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