summaryrefslogtreecommitdiff
path: root/os
diff options
context:
space:
mode:
authorsinanmohd <sinan@sinanmohd.com>2024-11-24 11:55:34 +0530
committersinanmohd <sinan@sinanmohd.com>2024-11-24 16:04:24 +0530
commit47583795fa779198671ac22892f2292268499048 (patch)
tree6bcc817d12c0de1509e7a2154675e657f598bc65 /os
parent71e6038750d0f48a5cfee0edc8f647337b9528ba (diff)
kay/network: disable privacy ipv6 address generation
Diffstat (limited to 'os')
-rw-r--r--os/kay/modules/network.nix9
1 files changed, 6 insertions, 3 deletions
diff --git a/os/kay/modules/network.nix b/os/kay/modules/network.nix
index 8cb18bf..22d132b 100644
--- a/os/kay/modules/network.nix
+++ b/os/kay/modules/network.nix
@@ -17,9 +17,12 @@ in
"ppp/username" = {};
};
- networking.vlans.wan = {
- id = inetVlan;
- interface = wanInterface;
+ networking = {
+ tempAddresses = "disabled";
+ vlans.wan = {
+ id = inetVlan;
+ interface = wanInterface;
+ };
};
services = {