summaryrefslogtreecommitdiff
path: root/modules/compromyse.nix
diff options
context:
space:
mode:
Diffstat (limited to 'modules/compromyse.nix')
-rw-r--r--modules/compromyse.nix10
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" ];
+ };
+}