nixos/object: Add HedgeDoc
Some checks failed
CI / Check, build and cache Nix flake (push) Has been cancelled

This commit is contained in:
2024-01-08 21:40:20 +00:00
parent c9ce57e2c5
commit e277cce3bc
4 changed files with 55 additions and 1 deletions

View File

@@ -483,6 +483,15 @@ in
(mkIf config.my.librespeed.backend.enable {
my.tmproot.persistence.config.directories = [ "/var/lib/librespeed-go" ];
})
(mkIf config.services.hedgedoc.enable {
my.tmproot.persistence.config.directories = [
{
directory = "/var/lib/hedgedoc";
user = "hedgedoc";
group = "hedgedoc";
}
];
})
]))
]);