nix-configs/home-modules/gpg.nix

8 lines
110 B
Nix
Raw Permalink Normal View History

2024-09-21 20:07:40 -04:00
{ config, ... }:
{
programs.gpg = {
enable = true;
homedir = "${config.xdg.dataHome}/gnupg";
};
}