nix-dotfiles/users/alice/default.nix

26 lines
620 B
Nix
Raw Normal View History

{
pkgs,
lib,
config,
name,
...
}:
2023-12-24 18:48:52 +01:00
import ../default.nix {
inherit
pkgs
lib
config
name
;
2023-12-25 18:54:38 +01:00
publicKeys = [
# photon
2023-12-25 18:54:38 +01:00
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOGcqhLaKsjwAnb6plDavAhEyQHNvFS9Uh5lMTuwMhGF alice@parthenon-7588"
# gh
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGoaEmzaS9vANckvBmqrYSHdFR0sPL4Xgeonbh9KcgFe gitlab keypair"
# janus
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIAfcO9p5opG8Tym6tcLkat6YGCcE6vwg0+V4MTC5WKop alice@parthenon-7588"
# palatine
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIP59pDsx34k2ikrKa0eVacj0APSGivaij3lP9L0Zd9au alice@parthenon-7588"
2023-12-25 18:54:38 +01:00
];
2023-12-27 10:03:13 +01:00
}