nixos_config/system/users.nix

23 lines
340 B
Nix
Raw Normal View History

2024-05-07 15:37:50 -04:00
{ lib,
pkgs,
config,
modulesPath,
...
}:
{
users = {
users = {
whovian = {
name = "whovian";
description = "Whovian9369";
extraGroups = [
"wheel"
"cdrom"
];
shell = pkgs.zsh;
2024-05-11 04:41:00 -04:00
initialPassword = "abcde"; # I need to log in somehow
2024-05-07 15:37:50 -04:00
};
};
};
}