nixfiles/hosts/hetzner-arm/containers/storage/profiles/users.nix

10 lines
161 B
Nix
Raw Normal View History

{...}: {
users.groups.storage = {
gid = 1000;
};
users.users.storage = {
uid = 1000;
isNormalUser = true;
extraGroups = ["storage"];
};
2024-11-20 20:01:01 +00:00
}