blob: 89443f40ff52a61891bbbbc0719205e1762e2716 (
plain)
1
2
3
4
5
6
7
8
9
10
|
{ config, ... }:
{
users.users.compromyse = {
initialPassword = "changeme";
isNormalUser = true;
# openssh.authorizedKeys.keys = [];
extraGroups = [ "wheel" "video" "storage" "input" "plugdev" "tty" "libvirtd" "docker" ];
};
}
|