blob: 39db362e20a520e1bb50d0211baf4b63a11a13fa (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
{ config, libs, pkgs, ... }:
{
users.users.admin = {
isNormalUser = true;
extraGroups = [ "wheel" ];
openssh.authorizedKeys.keys = [ "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJZxiAIsF13XqqxG0QzGFhT3iLDMsu2snb0wJOPUUq8e chris@deskpin" "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIDwlqdl/70dJ1ABKwLEdLB6/RDpfE4RVaB+xL3YJ1v3+ chris@kingpin" ];
};
security.sudo.wheelNeedsPassword = false;
}
|