mirror of
https://github.com/smg1024/homelab.git
synced 2026-05-23 04:32:58 +09:00
17 lines
309 B
Nix
17 lines
309 B
Nix
{ ... }:
|
|
|
|
{
|
|
users.users.poby = {
|
|
isNormalUser = true;
|
|
extraGroups = [
|
|
"wheel"
|
|
"networkmanager"
|
|
];
|
|
|
|
openssh.authorizedKeys.keys = [
|
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFuQ4STNnixjNDo38AyI0yABKAVfF3hupo66613IgfC7"
|
|
];
|
|
};
|
|
|
|
security.sudo.wheelNeedsPassword = false;
|
|
}
|