1
Fork 0
nixos-system-config/modules/nixos/user/caem.nix

12 lines
136 B
Nix
Raw Normal View History

2025-01-10 23:38:56 +01:00
{ pkgs, ... }:
{
users.users.caem = {
isNormalUser = true;
shell = pkgs.zsh;
extraGroups = [
"wheel"
];
};
}