summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorsinanmohd <sinan@sinanmohd.com>2023-09-08 16:39:30 +0530
committersinanmohd <sinan@sinanmohd.com>2023-09-08 16:41:11 +0530
commit19da93f1cca9dc56ed240ec063c59a572b79e51c (patch)
tree10565c3a330d2f9c7449509aa370641abc26aac9 /modules
parent068ac0002e87a6760e44574c333bff4eeb895f59 (diff)
hosts/kay: init
Diffstat (limited to 'modules')
-rw-r--r--modules/userdata.nix8
1 files changed, 8 insertions, 0 deletions
diff --git a/modules/userdata.nix b/modules/userdata.nix
index 84a8ca1..ffb5847 100644
--- a/modules/userdata.nix
+++ b/modules/userdata.nix
@@ -19,5 +19,13 @@ in
default = "sinanmohd.com";
description = mdDoc "Owner's domain";
};
+ pubKeys = mkOption {
+ type = types.listOf types.str;
+ description = mdDoc "Owner's public ssh keys";
+ default = [
+ "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIDCeMXhkjm9CabbA/1xdtP9bvFEm8pVXPk66NmI9/VvQ sinan@veu"
+ "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIL8LnyOuPmtKRqAZeHueNN4kfYvpRQVwCivSTq+SZvDU sinan@cez"
+ ];
+ };
};
}