removed password store

This commit is contained in:
Michael Thomson
2026-02-12 15:49:50 -05:00
parent f551d5ae34
commit 16b9d0b859
2 changed files with 0 additions and 35 deletions

View File

@@ -11,7 +11,6 @@
../../modules/home-manager/zsh.nix
../../modules/home-manager/tmux.nix
../../modules/home-manager/email-personal.nix
../../modules/home-manager/password-store
../../modules/home-manager/taskwarrior.nix
../../modules/home-manager/kubernetes.nix
../../modules/home-manager/nix-index.nix

View File

@@ -1,34 +0,0 @@
{
pkgs,
config,
...
}: {
home.packages = with pkgs; [
pinentry-curses
];
programs = {
gpg = {
enable = true;
};
password-store = {
enable = true;
package = pkgs.pass.withExtensions (exts: [exts.pass-otp exts.pass-file exts.pass-import]);
settings = {
PASSWORD_STORE_DIR = "\${HOME}/.password-store";
};
};
browserpass = {
enable = true;
};
};
services = {
gpg-agent = {
enable = !pkgs.stdenv.isDarwin;
pinentry = {
package = pkgs.pinentry-curses;
};
};
};
}