fix: password store stuff missing in shell configs
Some checks failed
/ check (push) Failing after 2m21s
Some checks failed
/ check (push) Failing after 2m21s
This commit is contained in:
parent
1c03395d86
commit
8816d9c06c
1 changed files with 20 additions and 20 deletions
|
@ -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 =
|
||||||
|
|
Loading…
Add table
Reference in a new issue