1
Fork 0
nixos-system-config/modules/nixos/user/caem.nix
2025-01-10 23:38:56 +01:00

11 lines
136 B
Nix

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