diff options
| author | Fuwn <[email protected]> | 2024-09-06 21:38:16 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-09-06 21:38:16 -0700 |
| commit | 67acfc5da20f4b348e3826788243c997990a9a3c (patch) | |
| tree | 08a1cc47f648eb001d5f8362716337c5af58d92f /modules/system/networking/dhcpcd.nix | |
| parent | Bump (diff) | |
| download | nixos-config-67acfc5da20f4b348e3826788243c997990a9a3c.tar.xz nixos-config-67acfc5da20f4b348e3826788243c997990a9a3c.zip | |
Bump
Diffstat (limited to 'modules/system/networking/dhcpcd.nix')
| -rw-r--r-- | modules/system/networking/dhcpcd.nix | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/modules/system/networking/dhcpcd.nix b/modules/system/networking/dhcpcd.nix index 99ac0f3..f46b657 100644 --- a/modules/system/networking/dhcpcd.nix +++ b/modules/system/networking/dhcpcd.nix @@ -1,6 +1,12 @@ { networking.dhcpcd = { wait = "background"; - extraConfig = "noarp"; + + extraConfig = '' + noarp + nooption domain_name_servers, domain_name, domain_search, host_name + nooption ntp_servers + nohook resolv.conf, wpa_supplicant + ''; }; } |