Files
sydnix/modules/nixos/gpg.nix
2024-12-29 02:43:35 -07:00

21 lines
315 B
Nix
Executable File

{ 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 ];
};
}