Files
sydnix/modules/nixos/gpg.nix
Madeleine Sydney 641036a889 Add GnuPG module
2024-12-28 23:04:36 -07:00

21 lines
315 B
Nix

{ config, lib, pkgs, ... }:
with lib;
{
options = {
sydnix.gpg = {
enable = mkEnableOption "GnuPG";
};
};
config = mkIf config.sydnix.gpg.enable {
programs.gnupg.agent = {
enable = true;
enableSSHSupport = true;
};
environment.systemPackages = [ pkgs.gnupg ];
};
}