Added changes to develop with Jetbot

This commit is contained in:
marc
2022-12-24 18:02:30 +01:00
parent 177e96ad18
commit 96028c6cad
4 changed files with 51 additions and 2 deletions

16
modules/system/gpg.nix Normal file
View File

@@ -0,0 +1,16 @@
{ config, lib, pkgs, self, ... }:
let
cfg = config.samfelag.modules.system.gpg;
in
{
options.samfelag.modules.system.gpg = {
enable = lib.mkEnableOption "gpg";
};
config = lib.mkIf cfg.enable {
programs.gnupg.agent.enable = true;
# environment.systemPackages = with pkgs; [
# gnupg
# ];
};
}