fix: password store stuff missing in shell configs
Some checks failed
/ check (push) Failing after 2m21s

This commit is contained in:
Daniel Flanagan 2025-02-17 00:10:47 -06:00
parent 1c03395d86
commit 8816d9c06c

View file

@ -27,6 +27,7 @@ in
cargo cargo
desktop desktop
gnome gnome
password-manager
/* /*
broot broot
@ -650,28 +651,27 @@ in
}; };
password-manager = password-manager =
{ pkgs, ... }:
{ {
imports = with homeManagerModules; [ lib,
pass config,
]; pkgs,
...
home.packages = with pkgs; [ }:
passage
rage
age-plugin-yubikey
bitwarden-cli
oath-toolkit
# bitwarden-desktop
];
};
pass =
{ pkgs, ... }:
{ {
programs.password-store = { config = lib.mkIf config.lyte.shell.enable {
enable = true; programs.password-store = {
package = pkgs.pass.withExtensions (exts: [ exts.pass-otp ]); enable = true;
package = pkgs.pass.withExtensions (exts: [ exts.pass-otp ]);
};
home.packages = with pkgs; [
passage
rage
age-plugin-yubikey
bitwarden-cli
oath-toolkit
# bitwarden-desktop
];
}; };
}; };