20 lines
263 B
Nix
Raw Normal View History

2025-02-25 10:49:57 -05:00
{
config,
lib,
...
}:
{
options = {
identityFile = lib.mkOption {
type = lib.types.path;
description = "Path containing decryption identity.";
default = "/Users/${config.nmasur.settings.username}/.ssh/id_ed25519";
};
};
}