chore(tazjin/nixos): remove monica setup

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>
This commit is contained in:
Vincent Ambo 2024-02-25 12:18:24 +03:00 committed by clbot
parent d5ec9a0c6f
commit c63b9d88cd
4 changed files with 0 additions and 46 deletions

View file

@ -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;
};
};
}