diff options
Diffstat (limited to 'users/tazjin/nixos/modules/monica.nix')
-rw-r--r-- | users/tazjin/nixos/modules/monica.nix | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/users/tazjin/nixos/modules/monica.nix b/users/tazjin/nixos/modules/monica.nix deleted file mode 100644 index 493bffb2f986..000000000000 --- a/users/tazjin/nixos/modules/monica.nix +++ /dev/null @@ -1,26 +0,0 @@ -# Host the Monica personal CRM software. -{ depot, config, ... }: - -{ - imports = [ - (depot.third_party.agenix.src + "/modules/age.nix") - ]; - - age.secrets.monica-appkey = { - group = config.services.monica.group; - file = depot.users.tazjin.secrets."monica-appkey.age"; - mode = "0440"; - }; - - services.monica = { - enable = true; - hostname = "monica.tazj.in"; - appKeyFile = "/run/agenix/monica-appkey"; - database.createLocally = true; - - nginx = { - enableACME = true; - forceSSL = true; - }; - }; -} |