nix: added user config

This commit is contained in:
Nico 2025-05-03 16:15:56 +10:00
parent 04e2e47d76
commit aa1a6d13f1

9
nix/modules/users.nix Normal file
View file

@ -0,0 +1,9 @@
{ config, lib, pkgs }:
{
users.users.nico = {
isNormalUser = true;
extraGroups = [ "wheel" ];
shell = pkgs.zsh;
};
}