diff options
| author | Max Audron <audron@cocaine.farm> | 2024-02-08 11:17:46 +0100 |
|---|---|---|
| committer | Max Audron <audron@cocaine.farm> | 2024-02-19 16:37:53 +0100 |
| commit | 4e787d452ba1f81a07066f6bafc7cf000d03098a (patch) | |
| tree | 13c6986f3c031f2868f0f05ed80695c1b2e195e3 /modules | |
| parent | removed old d3fus confs and added d3fus fritzbox (diff) | |
only enable dhcpcd ipv6 hanlding for vultr
Diffstat (limited to '')
| -rw-r--r-- | modules/common/networking.nix | 1 | ||||
| -rw-r--r-- | modules/vultr/default.nix | 4 |
2 files changed, 4 insertions, 1 deletions
diff --git a/modules/common/networking.nix b/modules/common/networking.nix index f6e0bdf..5281403 100644 --- a/modules/common/networking.nix +++ b/modules/common/networking.nix @@ -8,7 +8,6 @@ interfaces.eth0.useDHCP = true; nameservers = [ "1.1.1.1" "8.8.8.8" ]; - dhcpcd.IPv6rs = true; dhcpcd.extraConfig = '' nohook resolv.conf ''; diff --git a/modules/vultr/default.nix b/modules/vultr/default.nix index 3104e0f..04ea21c 100644 --- a/modules/vultr/default.nix +++ b/modules/vultr/default.nix @@ -8,6 +8,10 @@ boot.loader.grub.devices = [ "/dev/vda" ]; + networking = { + dhcpcd.IPv6rs = true; + }; + fileSystems = { "/" = { device = "/dev/vda1"; |
