{ config, lib, pkgs, ... }: let cfg = config.programs.keepassxc; iniFormat = pkgs.formats.ini { }; in { meta.maintainers = [ lib.maintainers.d-brasher ]; options.programs.keepassxc = { enable = lib.mkEnableOption "keepassxc"; package = lib.mkPackageOption pkgs "keepassxc" { nullable = true; }; settings = lib.mkOption { type = iniFormat.type; default = { }; example = lib.literalExpression '' { Browser.Enabled = true; GUI = { AdvancedSettings = true; ApplicationTheme = "dark"; CompactMode = true; HidePasswords = true; }; SSHAgent.Enabled = true; } ''; description = '' Configuration written to {file}`$XDG_CONFIG_HOME/keepassxc/keepassxc.ini`. See for the full list of options. ''; }; }; config = lib.mkIf cfg.enable ( lib.mkMerge [ { xdg.configFile = { "keepassxc/keepassxc.ini" = lib.mkIf (cfg.settings != { }) { source = iniFormat.generate "keepassxc-settings" cfg.settings; }; }; } (lib.mkIf (cfg.package != null) { home.packages = [ cfg.package ]; programs.brave.nativeMessagingHosts = [ cfg.package ]; programs.chromium.nativeMessagingHosts = [ cfg.package ]; programs.firefox.nativeMessagingHosts = [ cfg.package ]; programs.floorp.nativeMessagingHosts = [ cfg.package ]; programs.vivaldi.nativeMessagingHosts = [ cfg.package ]; }) ] ); }