nix-config/modules/features/desktop/pass.nix
2026-04-16 14:34:44 -04:00

22 lines
447 B
Nix

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