init config

This commit is contained in:
2025-07-04 00:32:17 +02:00
commit 1a20402712
35 changed files with 2383 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
{ config, lib, pkgs, osConfig, ... }:
{
options.lumpiastyHome.gpg = lib.mkEnableOption "Enable GPG with SSH";
config = lib.mkIf config.lumpiastyHome.gpg {
services.gpg-agent = {
enable = true;
enableSshSupport = true;
pinentryPackage = pkgs.pinentry-qt;
extraConfig = ''
listen-backlog 256
'';
};
programs.gpg.enable = true;
programs.bash.enable = lib.mkDefault true;
};
}