blob: 505a04d54327d667c3f0678148e5a7d0154d93b4 (
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" ];
  };
}
 |