blob: 9117c3a11f79d588da1a8f0b778072d1f895c9c2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
{ pkgs, ... }: {
home.packages = with pkgs; [
(pass.withExtensions (exts: [ exts.pass-otp ]))
];
services.gpg-agent = {
enable = true;
pinentryPackage = pkgs.pinentry-bemenu;
};
}
|