dotfiles/home/common/ragenix.nix
2025-07-05 18:01:07 +02:00

17 lines
305 B
Nix

{
config,
pkgs,
...
}:
{
age = {
package = pkgs.writeShellScriptBin "age-with-plugins" ''
exec env PATH="${pkgs.lib.makeBinPath [ pkgs.age-plugin-tpm ]}" ${pkgs.lib.getExe pkgs.age} "$@"
'';
identityPaths = [
"${config.home.homeDirectory}/.age/id-dotfiles"
];
};
}