nixos/kelder: Add Nextcloud

This commit is contained in:
2023-05-28 00:14:04 +01:00
parent 822ec211e3
commit 3f3d27d5bd
4 changed files with 43 additions and 0 deletions

View File

@@ -392,6 +392,16 @@ in
(mkIf config.boot.plymouth.enable {
my.tmproot.persistence.config.files = [ "/var/lib/plymouth/boot-duration" ];
})
(mkIf config.services.nextcloud.enable {
my.tmproot.persistence.config.directories = [
{
directory = config.services.nextcloud.home;
mode = "0750";
user = "nextcloud";
group = "nextcloud";
}
];
})
]))
]);