NixOS deployment for LinuxLab
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
385 B

{
imports = [
./hardware.nix
./nfs.nix
];
deployment = {
targetHost = "10.32.45.10";
};
networking = {
interfaces."eth0" = {
ipv4.addresses = [{
address = "10.32.45.10";
prefixLength = 24;
}];
};
defaultGateway = {
interface = "eth0";
address = "10.32.45.1";
};
};
system.stateVersion = "24.05";
}