nixos-config/machines/okarin/configuration.nix
Simon Bruder 26d85e97aa
infovhost: Init
This avoids boilerplate code for displaying the imprint on the fqdn of
the machine.
2024-01-03 12:09:27 +01:00

28 lines
416 B
Nix

{ pkgs, ... }:
{
imports = [
./hardware-configuration.nix
../../modules
./services/static-sites.nix
./services/proxy.nix
];
sbruder = {
nginx.hardening.enable = true;
full = false;
wireguard.home.enable = true;
infovhost.enable = true;
};
networking.hostName = "okarin";
system.stateVersion = "22.11";
networking.firewall.allowedTCPPorts = [
80
443
];
}