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

11 lines
162 B
Nix

{...}: {
users.groups.storage = {
gid = 1000;
};
users.users.storage = {
uid = 1000;
isNormalUser = true;
extraGroups = ["storage"];
};
}