omniflake/home/password-store.nix
2026-03-04 19:50:45 +01:00

29 lines
492 B
Nix

{ config, pkgs, ... }:
{
programs.password-store = {
enable = true;
settings = {
PASSWORD_STORE_DIR = "${config.xdg.dataHome}/crypto/password-store";
};
};
programs.firefox.nativeMessagingHosts = [
pkgs.passff-host
];
services.gnome-keyring.enable = false;
services.pass-secret-service = {
enable = true;
};
xdg.configFile."scdaemon" = {
text = ''
disable-ccid
pcsc-shared
'';
target = "../.gnupg/scdaemon.conf";
};
}