Signed-off-by: gwg313 <gwg313@pm.me>
This commit is contained in:
gwg313 2026-04-16 01:18:36 -04:00
parent e664930534
commit 85b7970b00
Signed by: gwg313
GPG key ID: 60FF63B4826B7400
2 changed files with 23 additions and 0 deletions

View file

@ -55,6 +55,7 @@
"proton" "proton"
"earlyoom" "earlyoom"
"dolphin" "dolphin"
"pass"
]; ];
laptop.features = [ laptop.features = [

View file

@ -0,0 +1,22 @@
{ ... }:
{
config.dendritic.features.pass.homeModules = [
(
{ pkgs, ... }:
{
programs.password-store = {
enable = true;
package = pkgs.pass.withExtensions (exts: [ exts.pass-otp ]);
settings = {
PASSWORD_STORE_DIR = "$XDG_DATA_HOME/password-store";
};
};
home.packages = with pkgs; [
tessen
zbar
];
}
)
];
}