summaryrefslogtreecommitdiff
path: root/Biz/Dev
diff options
context:
space:
mode:
authorBen Sima <ben@bsima.me>2021-01-04 07:51:37 -0500
committerBen Sima <ben@bsima.me>2021-01-04 07:51:37 -0500
commitdd74bbc17c97115df973fe9b9a17f7ce7bb6a99f (patch)
tree4778f5360d180181dbd556dbcef7fe8ac4c3ed03 /Biz/Dev
parent0f0a1f55c1c7b05926f559661c4154124ea532f7 (diff)
Support multiple keys per user
Every key is just a new line in the $USER.pub file. This is not automatically reflected to gitolite, which uses a separate config, so I'll need to come up with a way to replace gitolite someday.
Diffstat (limited to 'Biz/Dev')
-rw-r--r--Biz/Dev/Configuration.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/Biz/Dev/Configuration.nix b/Biz/Dev/Configuration.nix
index a80183e..27f26c5 100644
--- a/Biz/Dev/Configuration.nix
+++ b/Biz/Dev/Configuration.nix
@@ -255,8 +255,10 @@ in {
maxJobs = 1;
sshServe = {
enable = true;
- keys = [
- (builtins.readFile ../Keys/Ben.key)
+ keys = lib.trivial.pipe ../Keys/Ben.pub [
+ builtins.readFile
+ (lib.strings.splitString "\n")
+ (lib.filter (s: s != ""))
];
};
trustedUsers = [ "root" "ben" ];