Files
nixos/modules/users.nix

14 lines
182 B
Nix
Raw Normal View History

2026-02-22 19:54:17 +00:00
{ config, pkgs, ... }:
{
users.users.chris = {
isNormalUser = true;
shell = pkgs.zsh;
extraGroups = [
2026-02-25 00:25:09 +00:00
"chris"
2026-02-22 19:54:17 +00:00
"wheel"
"networkmanager"
];
};
}