flake: rework modules folder structure

This commit is contained in:
Veneficium 2024-12-23 19:49:03 +01:00
parent 5d64c56d40
commit 0952665f6b
56 changed files with 3 additions and 3 deletions

View file

@ -1,14 +0,0 @@
{ config, lib, ... }:
{
options.settings.programs.gnupg = {
enable = lib.mkEnableOption "enable gnuPG";
ssh = lib.mkEnableOption "enable gnuPG ssh integration";
};
config = lib.mkIf config.settings.programs.gnupg.enable {
programs.gnupg.agent = {
enable = true;
enableSSHSupport = config.settings.programs.gnupg.ssh;
};
};
}