new_dots/configuration/modules/main-user.nix
2026-01-03 12:48:28 +01:00

8 lines
127 B
Nix

{pkgs, ...}: {
users.users.benag = {
isNormalUser = true;
extraGroups = ["wheel"];
shell = pkgs.nushell;
};
}