Add laptop keys

This commit is contained in:
Bad 2022-02-20 18:19:05 +01:00
parent 878d4bef89
commit 440976059a
2 changed files with 4 additions and 4 deletions

View file

@ -20,6 +20,7 @@ in
environment = { environment = {
systemPackages = with pkgs; [ systemPackages = with pkgs; [
agenix
binutils binutils
coreutils coreutils
psmisc psmisc

View file

@ -1,9 +1,8 @@
let let
# set ssh public keys here for your system and user # set ssh public keys here for your system and user
system = ""; teapot_sys = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIL0SIfZoa02nUXilDdyB5FBBybCv12dfYUh9eCExiPb6 root@teapot";
user = ""; mae_teapot = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIDi83/SFKQqdJgZLOJDFSkPY8VWAqzV7XX9ZfocbTsfe mae@teapot";
allKeys = [ system user ]; allKeys = [ teapot_sys mae_teapot ];
in in
{ {
"secret.age".publicKeys = allKeys;
} }