This commit is contained in:
chris 2025-04-17 16:11:14 +02:00
commit 0caa35fe9a
Signed by: c6ristian
SSH key fingerprint: SHA256:B3m+yzpaxGXSEcDBpPHfvza/DNC0wuX+CKMeGq8wgak
2 changed files with 15 additions and 5 deletions

View file

@ -58,6 +58,18 @@ in
allowedUDPPorts = [ 53 ];
};
networking = {
interfaces.ens18 = {
ipv4.addresses = [
{
address = "94.45.254.3";
prefixLength = 25;
}
];
};
defaultGateway = "94.45.254.1";
};
# DO NOT CHANGE
# this defines the first version of NixOS that was installed on the machine so that programs with non-migratable data files are kept compatible
home-manager.users.noc.home.stateVersion = "24.11";