fix update script fqdn

This commit is contained in:
goeranh 2025-11-07 18:04:54 +01:00
parent 6f94a03a3c
commit 0f2922dffd
No known key found for this signature in database
5 changed files with 24 additions and 33 deletions

View file

@ -1,33 +0,0 @@
{
config,
lib,
pkgs,
...
}:
{
imports = [
./hardware-configuration.nix
./authentik.nix
];
networking.hostName = "auth";
networking.interfaces.ens18.ipv4.addresses = [
{
address = "141.56.51.96";
prefixLength = 24;
}
];
networking.defaultGateway.address = "141.56.51.254";
networking.nameservers = [
"9.9.9.9"
"1.1.1.1"
];
networking.firewall.allowedTCPPorts = [
80
443
];
system.stateVersion = "25.05";
}