feat(services/nextcloud): adding the rules for the hdd

This commit is contained in:
Raphael 2025-10-14 12:05:33 +02:00
parent 742801701e
commit 4458a4e5c8
No known key found for this signature in database

View file

@ -14,6 +14,16 @@ in
environment.systemPackages = with pkgs; [
php
];
users = {
groups.datausers = { };
users = {
nextcloud.extraGroups = [ "datausers" ];
};
};
systemd.tmpfiles.rules = [
"d /mnt/data 2770 root datausers -"
];
services = {
nextcloud = {
enable = true;