Files
flocon/machines/verbena/configuration.nix
2025-09-15 22:01:51 +02:00

36 lines
640 B
Nix

{ self, lib, ... }:
{
imports = [
../../system/core
../../system/nix
../../modules/unbound.nix
../../modules/unbound-auth.nix
self.inputs.srvos.nixosModules.server
];
nixpkgs.hostPlatform = "x86_64-linux";
networking.hostName = "verbena";
networking.useDHCP = lib.mkDefault true;
clan.core.settings.state-version.enable = true;
services.nginx = {
enable = true;
recommendedProxySettings = true;
recommendedTlsSettings = true;
};
networking.firewall.allowedTCPPorts = [
80
443
];
security.acme = {
acceptTerms = true;
defaults.email = "admin@turifer.dev";
};
}