nix machine / user configurations

add ipv6 for trimounts

ptr.pet 267f34a2 96b06468

verified
Changed files
+15 -2
hosts
-2
hosts/trimounts/default.nix
···
pkgs.gitMinimal
];
-
networking.firewall.enable = true;
-
system.stateVersion = "25.11";
}
···
pkgs.gitMinimal
];
system.stateVersion = "25.11";
}
+15
hosts/trimounts/modules/networking.nix
···
···
+
{
+
networking.enableIPv6 = true;
+
networking.interfaces.ens3 = {
+
ipv6.addresses = [{
+
address = "2a0a:4cc0:c1:e83d::b00b";
+
prefixLength = 64;
+
}];
+
};
+
networking.defaultGateway6 = {
+
address = "fe80::1";
+
interface = "ens3";
+
};
+
+
networking.firewall.enable = true;
+
}
hosts/trimounts/modules/nsid-tracker.nix hosts/trimounts/modules/nsid-tracker.disabled