12 lines
175 B
Nix
12 lines
175 B
Nix
|
{ lib, config, pkgs, home, ... }:
|
||
|
|
||
|
{
|
||
|
programs.gpg.enable = true;
|
||
|
|
||
|
home.file = {
|
||
|
".local/share/gnupg/gpg-agent.conf" = {
|
||
|
source = ./gpg-agent.conf;
|
||
|
};
|
||
|
};
|
||
|
}
|