implemented #10

This commit is contained in:
Asdam9
2026-08-06 11:01:00 +02:00
parent dbc118dcbb
commit 8768abb51f
2 changed files with 9 additions and 8 deletions

View File

@@ -12,12 +12,4 @@
}; };
}; };
}; };
flake.nixosModules.gnupg = { pkgs, ... }: {
programs.gnupg.agent = {
enable = true;
enableSSHSupport = true;
pinentryPackage = pkgs.pinentry-rofi;
};
};
} }

9
modules/features/gpg.nix Normal file
View File

@@ -0,0 +1,9 @@
{ inputs, lib, self, ... }: {
flake.nixosModules.gnupg = { pkgs, ... }: {
programs.gnupg.agent = {
enable = true;
enableSSHSupport = true;
pinentryPackage = pkgs.pinentry-rofi;
};
};
}