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
386 B
27 lines
386 B
{
|
|
imports = [
|
|
./hardware.nix
|
|
./ldap.nix
|
|
];
|
|
|
|
deployment = {
|
|
targetHost = "10.33.64.19";
|
|
};
|
|
|
|
networking = {
|
|
interfaces."eno1" = {
|
|
ipv4.addresses = [{
|
|
address = "10.33.64.19";
|
|
prefixLength = 20;
|
|
}];
|
|
};
|
|
|
|
defaultGateway = {
|
|
interface = "eno1";
|
|
address = "10.33.64.1";
|
|
};
|
|
};
|
|
|
|
system.stateVersion = "24.05";
|
|
}
|
|
|