Files
nixos/modules/users.nix
2026-02-26 23:27:43 +00:00

14 lines
182 B
Nix

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