dotfiles/nix/home-manager/modules/gpg.nix

12 lines
260 B
Nix
Raw Normal View History

2021-02-28 18:14:01 +01:00
{ nixpkgs, nixpkgs-unstable, nixpkgs-master, custom, hostname, rlib }:
{ config, lib, ... }:
{
home.packages = [
custom.gpg-key
];
home.activation.gnupghome = config.lib.dag.entryAfter ["writeBoundary"] ''
ln -s /mnt/key/.gnupg ~/.gnupg
'';
}