new_dots/configuration/modules/main-user.nix
2026-01-17 22:25:51 +01:00

8 lines
127 B
Nix

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