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

8 lines
127 B
Nix
Raw Normal View History

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