nix-config/hosts/hosting-02/default.nix
Lander Van den Bulcke 248bffd34c
feat: add base hosting-02
Signed-off-by: Lander Van den Bulcke <landervandenbulcke@gmail.com>
2025-09-09 23:20:14 +02:00

27 lines
443 B
Nix

{ ... }:
{
imports = [
./disk-config.nix
{
_module.args.disks = [ "/dev/sda" ];
}
../common/servers
];
time.timeZone = "Europe/Berlin";
networking.hostName = "hosting-02";
networking.firewall = {
enable = true;
allowedTCPPorts = [
80
443
];
};
security.acme.defaults.email = "landervandenbulcke@gmail.com";
security.acme.acceptTerms = true;
system.stateVersion = "25.05";
}