nixos-config/machines/yuzuru/configuration.nix

27 lines
391 B
Nix

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