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

14 lines
189 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"
];
};
2025-01-11 02:00:28 +01:00
home-manager.users.caem = import ../../home/caem;
2025-01-10 23:38:56 +01:00
}