NixOS-Config/modules/system/accounts/users/nextcloud/default.nix

10 lines
142 B
Nix
Raw Normal View History

2024-10-09 03:36:08 -04:00
{ ... }: {
2024-08-24 22:16:51 -04:00
users.users = {
nextcloud = {
extraGroups = [ "nfsShare" ];
isSystemUser = true;
uid = 995;
2024-08-24 22:16:51 -04:00
};
};
}