nixos_config/system/users.nix

23 lines
340 B
Nix

{ lib,
pkgs,
config,
modulesPath,
...
}:
{
users = {
users = {
whovian = {
name = "whovian";
description = "Whovian9369";
extraGroups = [
"wheel"
"cdrom"
];
shell = pkgs.zsh;
initialPassword = "abcde"; # I need to log in somehow
};
};
};
}