age.nix 304 B

1234567891011
  1. { inputs, ... }:
  2. {
  3. imports = [ inputs.agenix.nixosModules.default ];
  4. age.identityPaths = [ "/persist/etc/ssh/ssh_host_ed25519_key" ];
  5. age.secrets = {
  6. "odin/nullmailer/remotes".file =
  7. inputs.secrets."odin/nullmailer/remotes";
  8. "odin/thomas".file = inputs.secrets."odin/thomas";
  9. };
  10. }