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