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