1
Fork 0
satellite/home/features/cli/pass.nix
prescientmoon c0f12e1bf0
Reduce pass to libsecret service (and more)
- Reduce all pass integrations but that of a local libsecret service
- Fix "kanata" typos in the readme
- Fix typo in emergency script
- Remove dns level blocklisting for twitter (it's blocked using leechblock now)
- Add keybind for a certain auto form script to hyprland (it's commented out for now)
2024-03-04 11:33:59 +01:00

20 lines
459 B
Nix

# I use bitwarden as my main password manager.
#
# This currently acts as a simple local libsecret store.
{ pkgs, config, lib, ... }:
let storePath = "${config.home.homeDirectory}/.password-store";
in
{
programs.password-store = {
enable = true;
settings.PASSWORD_STORE_DIR = storePath;
};
services.pass-secret-service = {
inherit storePath;
enable = true;
};
satellite.persistence.at.data.apps.pass.directories = [ storePath ];
}