1
Fork 0

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)
This commit is contained in:
prescientmoon 2024-03-04 11:33:59 +01:00
parent 6e8611aa4b
commit c0f12e1bf0
Signed by: prescientmoon
SSH key fingerprint: SHA256:UUF9JT2s8Xfyv76b8ZuVL7XrmimH4o49p4b+iexbVH4
6 changed files with 14 additions and 25 deletions
home/features/cli

View file

@ -1,3 +1,6 @@
# 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
@ -12,13 +15,5 @@ in
enable = true;
};
# Enable runner integration
home.packages = lib.lists.optional config.programs.wofi.enable pkgs.wofi-pass;
# Enable the firefox extension
home.file.".mozilla/native-messaging-hosts/passff.json".source =
lib.mkIf config.programs.firefox.enable
"${pkgs.passff-host}/lib/mozilla/native-messaging-hosts/passff.json";
satellite.persistence.at.data.apps.pass.directories = [ storePath ];
}