diff options
Diffstat (limited to '')
| -rw-r--r-- | modules/compromyse.nix | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/modules/compromyse.nix b/modules/compromyse.nix new file mode 100644 index 0000000..0d204d2 --- /dev/null +++ b/modules/compromyse.nix @@ -0,0 +1,10 @@ +{ config, ... }: + +{ + users.users.compromyse = { + initialPassword = "changeme"; + isNormalUser = true; + # openssh.authorizedKeys.keys = []; + extraGroups = [ "wheel" "storage" "libvirtd" ]; + }; +} |
