1
0
mirror of https://github.com/nmasur/dotfiles synced 2025-03-15 22:07:05 +00:00
2025-02-25 10:49:57 -05:00

20 lines
263 B
Nix

{
config,
lib,
...
}:
{
options = {
identityFile = lib.mkOption {
type = lib.types.path;
description = "Path containing decryption identity.";
default = "/Users/${config.nmasur.settings.username}/.ssh/id_ed25519";
};
};
}