still working

This commit is contained in:
Bryan Ramos 2023-06-05 15:14:24 -04:00
parent 64235f2775
commit 0712b63194
14 changed files with 508 additions and 174 deletions

11
modules/gpg/default.nix Normal file
View file

@ -0,0 +1,11 @@
{ pkgs, lib, config, ... }:
with lib;
let cfg = config.modules.gpg;
in {
options.modules.gpg = { enable = mkEnableOption "gpg"; };
config = mkIf cfg.enable {
programs.gpg.enable = true;
};
}