nix-conf/system/users.nix

7 lines
105 B
Nix
Raw Normal View History

2024-10-27 13:34:49 -04:00
{...}: {
2024-10-18 23:42:11 -04:00
users.users.ahnwuoa = {
isNormalUser = true;
2024-10-27 13:34:49 -04:00
extraGroups = ["wheel" "podman"];
2024-10-18 23:42:11 -04:00
};
}