Rename host vps-monitor to vps-ns

This commit is contained in:
SebastianStork 2026-03-01 15:22:25 +01:00
parent d521069b8d
commit 045620f11f
Signed by: SebastianStork
SSH key fingerprint: SHA256:tRrGdjYOwgHxpSc/wTOZQZEjxcb15P0tyXRsbAfd+2Q
7 changed files with 0 additions and 0 deletions

25
hosts/vps-ns/default.nix Normal file
View file

@ -0,0 +1,25 @@
{ self, ... }:
{
imports = [ self.nixosModules.server-profile ];
system.stateVersion = "25.11";
custom = {
boot.loader.grub.enable = true;
networking = {
overlay = {
address = "10.254.250.5";
isLighthouse = true;
};
underlay = {
interface = "enp1s0";
cidr = "188.245.223.145/32";
isPublic = true;
gateway = "172.31.1.1";
};
};
services.dns.enable = true;
};
}