| 12345678910111213 |
- { config, inputs, ... }:
- {
- imports = [ inputs.agenix.nixosModules.default ];
- age.identityPaths = [ "/persist/etc/ssh/ssh_host_ed25519_key" ];
- age.secrets = {
- "odin/nullmailer/remotes" = {
- file = inputs.secrets."odin/nullmailer/remotes";
- owner = config.services.nullmailer.user;
- };
- "odin/thomas".file = inputs.secrets."odin/thomas";
- };
- }
|