fix: declare KeePassXC browser integration

This commit is contained in:
2026-03-11 21:25:22 +01:00
parent 6677b1e14b
commit 82a4f44a19
3 changed files with 11 additions and 4 deletions
+9 -2
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
}