removed password store
This commit is contained in:
@@ -11,7 +11,6 @@
|
|||||||
../../modules/home-manager/zsh.nix
|
../../modules/home-manager/zsh.nix
|
||||||
../../modules/home-manager/tmux.nix
|
../../modules/home-manager/tmux.nix
|
||||||
../../modules/home-manager/email-personal.nix
|
../../modules/home-manager/email-personal.nix
|
||||||
../../modules/home-manager/password-store
|
|
||||||
../../modules/home-manager/taskwarrior.nix
|
../../modules/home-manager/taskwarrior.nix
|
||||||
../../modules/home-manager/kubernetes.nix
|
../../modules/home-manager/kubernetes.nix
|
||||||
../../modules/home-manager/nix-index.nix
|
../../modules/home-manager/nix-index.nix
|
||||||
|
|||||||
@@ -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;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
||||||
Reference in New Issue
Block a user