nixos-config/machines/yuzuru/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

25 lines
358 B
Nix

{ pkgs, ... }:
{
imports = [
./hardware-configuration.nix
../../modules
];
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
];
}