home/pass: remove passmenu

This commit is contained in:
Dmitriy Pleshevskiy 2022-09-04 22:24:41 +03:00
parent 4d55dc2764
commit 58bd85641a
Signed by: pleshevskiy
GPG key ID: 1B59187B161C0215
3 changed files with 7 additions and 0 deletions

View file

@ -18,6 +18,7 @@ in
config = mkIf cfg.enable {
programs.password-store = {
enable = true;
package = pkgs.pass-minimal;
settings = {
PASSWORD_STORE_DIR = "${passDataDir}/store";
};

View file

@ -1,3 +1,4 @@
[
(import ./himalaya.nix)
(import ./pass.nix)
]

5
overlays/pass.nix Normal file
View file

@ -0,0 +1,5 @@
final: prev: {
pass-minimal = prev.pass.override {
dmenuSupport = false;
};
}