mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-03-22 17:49:07 +01:00
Rename host vps-monitor to vps-ns
This commit is contained in:
parent
d521069b8d
commit
045620f11f
7 changed files with 0 additions and 0 deletions
25
hosts/vps-ns/default.nix
Normal file
25
hosts/vps-ns/default.nix
Normal 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;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue