diff options
author | Karel Kočí <cynerd@email.cz> | 2024-04-11 09:41:08 +0200 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2024-04-11 09:41:08 +0200 |
commit | 22b547adf43c6775a017932e7294eb1b16f03ef2 (patch) | |
tree | 03b9f534f9939b01db28433655efcb8cf53b1b03 /nixos/configurations | |
parent | 0254a755da33dfc800c6a738fa094bada8dc46bd (diff) | |
download | nixos-personal-22b547adf43c6775a017932e7294eb1b16f03ef2.tar.gz nixos-personal-22b547adf43c6775a017932e7294eb1b16f03ef2.tar.bz2 nixos-personal-22b547adf43c6775a017932e7294eb1b16f03ef2.zip |
nixos/errol: switch to systemd-networkd
Diffstat (limited to 'nixos/configurations')
-rw-r--r-- | nixos/configurations/errol.nix | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/nixos/configurations/errol.nix b/nixos/configurations/errol.nix index 0b9eae1..fd348e8 100644 --- a/nixos/configurations/errol.nix +++ b/nixos/configurations/errol.nix @@ -71,6 +71,14 @@ in { # }; #}; + networking = { + useNetworkd = true; + useDHCP = true; + }; + systemd.network = { + wait-online.enable = false; + }; + environment.systemPackages = [ pkgs.nvtopPackages.amd ]; |