feat: a bunch of services...!

This commit is contained in:
Kat Inskip 2024-05-26 15:51:05 -07:00
parent 79ebb1a48e
commit 7f6562ea70
Signed by: kat
GPG key ID: 465E64DECEA8CF0F
13 changed files with 214 additions and 76 deletions

View file

@ -0,0 +1,19 @@
{ config, ... }: {
sops.secrets.monica_appkey = {
sopsFile = ./secrets.yaml;
owner = config.services.monica.user;
group = config.services.monica.group;
};
services.monica = {
enable = true;
appURL = "https://monica.kittywit.ch";
appKeyFile = config.sops.secrets.monica_appkey.path;
nginx = {
serverAliases = [
"monica.kittywit.ch"
];
enableACME = true;
forceSSL = true;
};
};
}