nixpkgs/home/programs/gpg.nix
Daniel Siepmann 0a5c2ca8ff
Move files out of home to xdg folders
Thanks to xdg-ninja for analysing my home folder.
2022-10-11 20:36:48 +02:00

17 lines
191 B
Nix

{ config }:
{
enable = true;
homedir = "${config.xdg.dataHome}/gnupg";
publicKeys = [
{
source = ./../../gpg/publickeys/myown.pgp;
trust = "ultimate";
}
];
}