configurations for my servers and desktops
nix nixos flake dots dotfiles

feat: secrets.nix

+18 -1
+2
hosts/bluepill-proxy/default.nix
··· 15 15 dates = "04:40"; 16 16 allowReboot = true; 17 17 }; 18 + 19 + age.identityPaths = ["/etc/ssh/ssh_host_ed25519_key"]; 18 20 }
+1 -1
hosts/bluepill/default.nix
··· 28 28 dates = "04:40"; 29 29 }; 30 30 31 - age.identityPaths = ["/etc/age.key"]; 31 + age.identityPaths = ["/etc/ssh/ssh_host_ed25519_key"]; 32 32 }
+15
secrets/secrets.nix
··· 1 + let 2 + bluepill = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIMlO7ODA+//BwvI4IEr+7vTgVTQl1rvs/DMr67F6Ztr4"; 3 + bluepill-proxy = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJl9k6d9zNhRAFv1cnSHEZ3i4qSLOnzE4ekHxMuRdkhi"; 4 + in 5 + { 6 + "bluesky-pds.age".publicKeys = [ bluepill ]; 7 + "draupnir-at.age".publicKeys = [ bluepill ]; 8 + "msmtp.age".publicKeys = [ bluepill ]; 9 + "navidrome.age".publicKeys = [ bluepill ]; 10 + "rclone-onedrive.age".publicKeys = [ bluepill ]; 11 + "restic.age".publicKeys = [ bluepill ]; 12 + "slskd.age".publicKeys = [ bluepill ]; 13 + "tranquil-pds.age".publicKeys = [ bluepill ]; 14 + "transmission.age".publicKeys = [ bluepill ]; 15 + }