blob: 0d204d209e894c07a0ca538eb47dd02a5e7d4e35 (
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" "libvirtd" ];
};
}
|