Files
nixos/system/users.nix

16 lines
281 B
Nix
Raw Normal View History

2026-03-09 21:43:40 +00:00
{ pkgs, ... }:
{
users.users.chris = {
uid = 1000;
isNormalUser = true;
initialPassword = "changeme123";
shell = pkgs.zsh;
extraGroups = [
"chris"
"wheel"
"networkmanager"
];
};
}