this will be developed on a separate branch

This commit is contained in:
goeranh 2026-02-28 02:59:56 +01:00
parent df593b467e
commit c927f8675b
No known key found for this signature in database
7 changed files with 0 additions and 502 deletions

View file

@ -1,34 +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
3389
];
system.stateVersion = "25.05";
}