Add icdm-root

This commit is contained in:
Greg Hellings
2023-03-07 17:17:24 -06:00
parent 7a1958c6e5
commit a5860e8076
15 changed files with 377 additions and 1 deletions
+20
View File
@@ -0,0 +1,20 @@
{...}:
{
# If we have to do proxying in Bayonnais, we can start to work on that here
# networking.proxy.noProxy = "127.0.0.1,localhost,internal.domain";
networking = {
hostName = "icdm-root";
useDHCP = false;
defaultGateway = "10.42.1.1";
nameservers = [ "100.100.100.100" "10.42.1.2" ];
enableIPv6 = false;
interfaces = {
eno1.ipv4.addresses = [ {
address = "10.42.101.1";
prefixLength = 16;
} ];
};
};
}