nixos-config/modules/secrets/default.nix

15 lines
185 B
Nix

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