diff options
author | Vincent Ambo <tazjin@tvl.su> | 2024-02-25T09·18+0300 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2024-02-25T09·22+0000 |
commit | c63b9d88cd94e00ec03ac3878a39fcf30980e008 (patch) | |
tree | f8a71c6969b002ea57b914fcd95d2a8a7026c980 /users/tazjin/nixos/modules | |
parent | d5ec9a0c6f568002532f2e126ab36a813df47b40 (diff) |
chore(tazjin/nixos): remove monica setup r/7602
I never ended up actually using this for anything. Change-Id: I2bd9a46f6284d8283453d34eab6134efc92ea684 Reviewed-on: https://cl.tvl.fyi/c/depot/+/11023 Tested-by: BuildkiteCI Reviewed-by: tazjin <tazjin@tvl.su> Autosubmit: tazjin <tazjin@tvl.su>
Diffstat (limited to 'users/tazjin/nixos/modules')
-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; - }; - }; -} |