fix: declare KeePassXC browser integration

This commit is contained in:
2025-12-01 19:19:35 +01:00
parent 8c3e762a46
commit 8ae482d846
3 changed files with 11 additions and 4 deletions

View File

@@ -1,4 +1,11 @@
{ pkgs, ... }:
{
enable = true;
# TODO: https://mynixos.com/home-manager/option/programs.keepassxc.settings
programs.keepassxc = {
enable = true;
settings = {
Browser.Enabled = true;
};
};
# programs.firefox.nativeMessagingHosts = [ pkgs.keepassxc ]; # FIXME: Resolve 'Access error for config file /home/h/.config/keepassxc/keepassxc.ini' error
}