Files
nixos/system/users.nix
2026-03-21 17:28:54 +00:00

17 lines
294 B
Nix

{ pkgs, ... }:
{
users.users.chris = {
uid = 1000;
isNormalUser = true;
initialPassword = "changeme123";
shell = pkgs.zsh;
extraGroups = [
"chris"
"wheel"
"networkmanager"
"docker"
];
};
}