feat: add pass - a CLI password manager

This commit is contained in:
Oliver Davies 2023-06-22 07:55:59 +01:00
parent 31602d9de6
commit 3547fe2c2b
2 changed files with 9 additions and 0 deletions

View file

@ -13,6 +13,8 @@ with pkgs; [
gh
git
git-crypt
gnupg
pinentry
inotify-tools
just
tree-sitter
@ -26,6 +28,7 @@ with pkgs; [
nodePackages.nodemon
nodePackages.prettier
nodejs
pass
php81
php81Packages.composer
php81Packages.phpcbf

View file

@ -237,5 +237,11 @@ in
enable = true;
flake = "nixedo";
};
programs.gnupg.agent = {
enable = true;
enableSSHSupport = true;
pinentryFlavor = "qt";
};
}