prescientmoon
c0f12e1bf0
- 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)
20 lines
459 B
Nix
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 ];
|
|
}
|