sops i fucking cannnnt

This commit is contained in:
Lennart J. Kurzweg (Nx2)
2024-05-30 20:43:20 +02:00
parent 1ff9e9231d
commit 52343cbc23
10 changed files with 218 additions and 72 deletions

15
system-modules/gpg.nix Normal file
View File

@@ -0,0 +1,15 @@
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
gnupg
];
programs.gnupg = {
dirmngr.enable = true;
agent = {
enable = true;
enableSSHSupport = true;
enableExtraSocket = true;
enableBrowserSocket = true;
};
};
}