aboutsummaryrefslogtreecommitdiffstats
path: root/modules/by-name/ga/gallery
diff options
context:
space:
mode:
authorSilas Schöffel <sils@sils.li>2025-01-20 16:14:55 +0100
committerSilas Schöffel <sils@sils.li>2025-01-20 16:14:55 +0100
commit281478f061ce87b126edbc3e76cb793921203ca2 (patch)
tree973dabbd709ddbf12ccd062ccc3c4b13a0bd86f5 /modules/by-name/ga/gallery
parentfeat(miniflux): init module, host on server2 (diff)
downloadnixos-server-281478f061ce87b126edbc3e76cb793921203ca2.zip
feat(modules/gallery): init
Diffstat (limited to 'modules/by-name/ga/gallery')
-rw-r--r--modules/by-name/ga/gallery/module.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/modules/by-name/ga/gallery/module.nix b/modules/by-name/ga/gallery/module.nix
new file mode 100644
index 0000000..a5237e6
--- /dev/null
+++ b/modules/by-name/ga/gallery/module.nix
@@ -0,0 +1,22 @@
+{
+ config,
+ lib,
+ ...
+}: let
+ cfg = config.sils.gallery;
+in {
+ options.sils.gallery = {
+ enable = lib.mkEnableOption "a stateful static gallery site";
+ domain = lib.mkOption {
+ type = lib.types.str;
+ };
+ };
+ config = lib.mkIf cfg.enable {
+ vhack.nginx.enable = true;
+ services.nginx.virtualHosts."${cfg.domain}" = {
+ forceSSL = true;
+ enableACME = true;
+ root = "/srv/${cfg.domain}";
+ };
+ };
+}