nix/modules/system/user/default.nix

8 lines
110 B
Nix
Raw Normal View History

2024-10-04 18:30:45 +02:00
{
2024-08-31 17:43:40 +02:00
users.users.joy = {
isNormalUser = true;
description = "joy";
extraGroups = ["wheel"];
2024-08-31 17:43:40 +02:00
};
}