Gabe Venberg
57252af57b
This involved setting up the pass password manager to manage secrets, which in turn required setting up gpg, which needed syncthing to sync keys.
14 lines
145 B
Nix
14 lines
145 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}: {
|
|
programs.gpg.enable = true;
|
|
|
|
services.gpg-agent={
|
|
enable=true;
|
|
enableSshSupport = true;
|
|
};
|
|
}
|