initial ESS Community NixOS module

This commit is contained in:
sid 2026-05-10 22:54:27 +02:00
parent 18b970a750
commit 997726aecd
11 changed files with 443 additions and 39 deletions

11
hosts/ess-helm/nginx.nix Normal file
View file

@ -0,0 +1,11 @@
{ inputs, ... }:
{
imports = [ inputs.synix.nixosModules.nginx ];
services.nginx = {
enable = true;
openFirewall = true;
forceSSL = true;
};
}