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,11 +651,18 @@ in
}; };
password-manager = password-manager =
{ pkgs, ... }:
{ {
imports = with homeManagerModules; [ lib,
pass config,
]; pkgs,
...
}:
{
config = lib.mkIf config.lyte.shell.enable {
programs.password-store = {
enable = true;
package = pkgs.pass.withExtensions (exts: [ exts.pass-otp ]);
};
home.packages = with pkgs; [ home.packages = with pkgs; [
passage passage
@ -665,14 +673,6 @@ in
# bitwarden-desktop # bitwarden-desktop
]; ];
}; };
pass =
{ pkgs, ... }:
{
programs.password-store = {
enable = true;
package = pkgs.pass.withExtensions (exts: [ exts.pass-otp ]);
};
}; };
senpai = senpai =