dotfiles/home/secrets/secrets.nix

17 lines
715 B
Nix
Raw Normal View History

2024-01-27 14:47:45 +01:00
let
homes = {
futomaki = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIAFFAuJa9TYB3IsHly1Z4WjQrr4cEkubNWQyhIClh6bH";
2024-09-18 13:55:53 +02:00
sashimi = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICgFwSZPS1B3wndghjmgmamdM5LZ7hqv4fZsbcmYBQWT";
2024-02-18 19:51:47 +01:00
yuba = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIHw8KqsIrn0SMTkBu0qZ5uHNXD0h6hpchTmWt54HhB5Z";
};
yubikeys._5ci = "age1yubikey1qfkn095xth4ukxjye98ew4ul6xdkyz7sek0hd67yfjs5z6tv7q9jgnfchls";
2024-05-07 18:20:52 +02:00
default = [ yubikeys._5ci ] ++ (builtins.attrValues homes);
in
{
2024-01-27 14:47:45 +01:00
"home/secrets/aerc-personal.conf.age".publicKeys = default;
2024-04-16 01:16:52 +02:00
"home/secrets/gitconfig-freelance.age".publicKeys = default;
2024-01-27 14:47:45 +01:00
"home/secrets/gitconfig-work.age".publicKeys = default;
"home/secrets/wakatime.cfg.age".publicKeys = default;
}