gpg: init

This commit is contained in:
Katherina Walshe-Grey 2025-03-19 17:17:51 +00:00
parent 780a18f627
commit dc7fdfb7ea
2 changed files with 10 additions and 1 deletions

8
common/gpg.nix Normal file
View file

@ -0,0 +1,8 @@
{ config, lib, pkgs, ... }:
{
programs.gnupg.agent = {
enable = true;
enableSSHSupport = true;
};
}