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
423 B
28 lines
423 B
{
|
|
imports = [
|
|
./hardware.nix
|
|
# TODO: ./cache.nix
|
|
# ./netinstall.nix
|
|
];
|
|
|
|
deployment = {
|
|
targetHost = "10.33.64.21";
|
|
};
|
|
|
|
networking = {
|
|
interfaces."eth0" = {
|
|
ipv4.addresses = [{
|
|
address = "10.33.64.21";
|
|
prefixLength = 20;
|
|
}];
|
|
};
|
|
|
|
defaultGateway = {
|
|
interface = "eth0";
|
|
address = "10.33.64.1";
|
|
};
|
|
};
|
|
|
|
system.stateVersion = "24.05";
|
|
}
|
|
|