initial commit

This commit is contained in:
sid 2026-04-16 20:10:03 +02:00
commit 0be2158ea9
20 changed files with 1239 additions and 0 deletions

View file

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