dots/modules/linux/users.nix
2025-05-03 16:31:41 +10:00

9 lines
138 B
Nix

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