diff options
author | Gregor Kleen <gkleen@yggdrasil.li> | 2021-11-15 11:38:35 +0059 |
---|---|---|
committer | Gregor Kleen <gkleen@yggdrasil.li> | 2021-11-15 11:38:35 +0059 |
commit | 75caaf888012af07ae770705693cbd06f86e9657 (patch) | |
tree | 83a995e44e43e59588f993a0b13b7a4b5021b823 | |
parent | 2be8ddd04ef400c1e9106626e7fcbc505e52ebc1 (diff) | |
download | nixos-75caaf888012af07ae770705693cbd06f86e9657.tar nixos-75caaf888012af07ae770705693cbd06f86e9657.tar.gz nixos-75caaf888012af07ae770705693cbd06f86e9657.tar.bz2 nixos-75caaf888012af07ae770705693cbd06f86e9657.tar.xz nixos-75caaf888012af07ae770705693cbd06f86e9657.zip |
vidhar: ...
-rw-r--r-- | hosts/vidhar/default.nix | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/hosts/vidhar/default.nix b/hosts/vidhar/default.nix index d9d44070..6d6726af 100644 --- a/hosts/vidhar/default.nix +++ b/hosts/vidhar/default.nix | |||
@@ -173,8 +173,8 @@ | |||
173 | serviceConfig = let | 173 | serviceConfig = let |
174 | dhcpcdConf = pkgs.writeText "dhcpcd.conf" '' | 174 | dhcpcdConf = pkgs.writeText "dhcpcd.conf" '' |
175 | duid | 175 | duid |
176 | persistent | ||
177 | vendorclassid | 176 | vendorclassid |
177 | ipv6only | ||
178 | 178 | ||
179 | nooption domain_name_servers, domain_name, domain_search | 179 | nooption domain_name_servers, domain_name, domain_search |
180 | option classless_static_routes | 180 | option classless_static_routes |
@@ -191,6 +191,8 @@ | |||
191 | ipv6rs # enable routing solicitation for WAN adapter | 191 | ipv6rs # enable routing solicitation for WAN adapter |
192 | ia_na 1 # request an IPv6 address | 192 | ia_na 1 # request an IPv6 address |
193 | ia_pd 1 eno1/0 # request a PD and assign it to the LAN | 193 | ia_pd 1 eno1/0 # request a PD and assign it to the LAN |
194 | |||
195 | waitip 6 | ||
194 | ''; | 196 | ''; |
195 | in { | 197 | in { |
196 | Type = "forking"; | 198 | Type = "forking"; |