summaryrefslogtreecommitdiff
path: root/modules/compromyse.nix
diff options
context:
space:
mode:
authorRaghuram Subramani <raghus2247@gmail.com>2024-01-31 22:02:28 +0530
committerRaghuram Subramani <raghus2247@gmail.com>2024-01-31 22:02:28 +0530
commit01bb0877c285383fd2857920048bd2576f4d31e9 (patch)
treeb6f26596f1051baf5b791450d6158a69363f6c76 /modules/compromyse.nix
parent578dd91bd1af79b256166ecf797344611790e267 (diff)
restructure
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" ];
+ };
+}