@@ 8,17 8,26 @@
time.timeZone = "Europe/Helsinki";
+ # NOTE: There should ever only be a single network interface in my VMs.
+ # If this changes, consider taking this out and figuring another way
+ # to do this, e.g. defining the main interface in the base role or something.
+ networking.usePredictableInterfaceNames = false;
+
+ /*
networking.defaultGateway = {
address = "10.1.1.1";
interface = "eth0";
};
+ */
networking.nameservers = ["10.1.2.3"];
+ /*
networking.interfaces."eth0".ipv4.addresses = [
{
address = artautil.getIPv4 config.networking.hostName;
prefixLength = 24;
}
];
+ */
nix.settings.trusted-users = ["root"];