add chatterino, plasma-config, kitty, runelite, eza
fix formatting, fix btrfs being enabled by default update flake
This commit is contained in:
parent
01f8435ba7
commit
39fb8c64dc
15 changed files with 195 additions and 48 deletions
26
modules/nixos/system/gnupg/default.nix
Normal file
26
modules/nixos/system/gnupg/default.nix
Normal file
|
@ -0,0 +1,26 @@
|
|||
{
|
||||
config,
|
||||
pkgs,
|
||||
lib,
|
||||
namespace,
|
||||
...
|
||||
}:
|
||||
with lib;
|
||||
with lib.${namespace};
|
||||
let
|
||||
cfg = config.${namespace}.system.gnupg;
|
||||
in
|
||||
{
|
||||
options.${namespace}.system.gnupg = with types; {
|
||||
enable = mkBoolOpt false "Whether or not to manage fonts.";
|
||||
};
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
services.pcscd.enable = true;
|
||||
programs.gnupg.agent = {
|
||||
enable = true;
|
||||
enableSSHSupport = true;
|
||||
};
|
||||
};
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue