nixos-config/modules/secrets/default.nix

10 lines
162 B
Nix

{ config, lib, options, ... }:
{
config.age = {
identityPaths = options.age.identityPaths.default ++ [
"/home/alarsyo/.ssh/id_ed25519"
];
};
}