nixos-config/modules/secrets/default.nix

10 lines
162 B
Nix
Raw Normal View History

2022-01-17 21:56:41 +01:00
{ config, lib, options, ... }:
{
config.age = {
identityPaths = options.age.identityPaths.default ++ [
"/home/alarsyo/.ssh/id_ed25519"
];
};
}