diff options
Diffstat (limited to 'hosts')
-rw-r--r-- | hosts/cez/configuration.nix | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/hosts/cez/configuration.nix b/hosts/cez/configuration.nix index 05e7dd6..b8bbc3e 100644 --- a/hosts/cez/configuration.nix +++ b/hosts/cez/configuration.nix @@ -27,8 +27,15 @@ in networking = { hostName = "cez"; - dhcpcd.wait = "background"; - wireless.iwd.enable = true; + useDHCP = false; + + wireless.iwd = { + enable = true; + settings = { + General.EnableNetworkConfiguration = true; + Network.NameResolvingService = "resolvconf"; + }; + }; }; services = { |