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

13 lines
189 B
Nix

{ pkgs, ... }:
{
users.users.caem = {
isNormalUser = true;
shell = pkgs.zsh;
extraGroups = [
"wheel"
];
};
home-manager.users.caem = import ../../home/caem;
}