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.

28 lines
414 B

{
imports = [
./hardware.nix
# TODO: ./cache.nix
./netinstall.nix
];
deployment = {
targetHost = "10.32.45.12";
};
networking = {
interfaces."eth0" = {
ipv4.addresses = [{
address = "10.32.45.12";
prefixLength = 24;
}];
};
defaultGateway = {
interface = "eth0";
address = "10.32.45.1";
};
};
system.stateVersion = "24.05";
}