mirror of
https://github.com/willemml/dotfiles.nix.git
synced 2025-04-12 03:07:17 +00:00
14 lines
326 B
Nix
14 lines
326 B
Nix
{
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
users.users.willem = {
|
|
shell = lib.mkDefault pkgs.zsh;
|
|
isNormalUser = true;
|
|
extraGroups = ["networkmanager" "wheel" "video" "udev"];
|
|
openssh.authorizedKeys.keys = [
|
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIBx1z962nl87rmOk/vw3EBSgqU/VlCqON8zTeLHQcSBp willem@zeus"
|
|
];
|
|
};
|
|
}
|