1
Fork 0
satellite/home/features/cli/pass.nix
Matei Adriel 6aea9045c7
Set up passff in favour of browserpass
This also introduces a custom `satellite.toggles` module.
2023-11-13 04:03:14 +01:00

25 lines
686 B
Nix

{ 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;
};
# 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 ];
}