mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-03-22 22:29:06 +01:00
25 lines
466 B
Nix
25 lines
466 B
Nix
{ self, ... }:
|
|
{
|
|
imports = [ self.nixosModules.server-profile ];
|
|
|
|
system.stateVersion = "25.11";
|
|
|
|
custom = {
|
|
boot.loader.systemd-boot.enable = true;
|
|
|
|
networking = {
|
|
overlay = {
|
|
address = "10.254.250.2";
|
|
isLighthouse = true;
|
|
};
|
|
underlay = {
|
|
interface = "enp1s0";
|
|
cidr = "49.13.231.235/32";
|
|
isPublic = true;
|
|
gateway = "172.31.1.1";
|
|
};
|
|
};
|
|
|
|
services.dns.enable = true;
|
|
};
|
|
}
|