From c11b72359721cce9b02f20e5a16fd1ff52f11a67 Mon Sep 17 00:00:00 2001
From: khaneliman
programs.keepassxc.enable
+
+
+Whether to enable keepassxc.
+ +Type: +boolean
+ +Default:
+false
Example:
+true
Declared by:
+
+
+<home-manager/modules/programs/keepassxc.nix>
+
+ |
programs.keepassxc.package
+
+
+The keepassxc package to use.
+ +Type: +null or package
+ +Default:
+pkgs.keepassxc
Declared by:
+
+
+<home-manager/modules/programs/keepassxc.nix>
+
+ |
programs.keepassxc.settings
+
+
+Configuration written to
+$XDG_CONFIG_HOME/keepassxc/keepassxc.ini.
See https://github.com/keepassxreboot/keepassxc/blob/647272e9c5542297d3fcf6502e6173c96f12a9a0/src/core/Config.cpp#L49-L223 +for the full list of options.
+ +Type: +attribute set of section of an INI file (attrs of INI atom (null, bool, int, float or string))
+ +Default:
+{ }
Example:
{
+ Browser.Enabled = true;
+
+ GUI = {
+ AdvancedSettings = true;
+ ApplicationTheme = "dark";
+ CompactMode = true;
+ HidePasswords = true;
+ };
+
+ SSHAgent.Enabled = true;
+}
+
+
+
+Declared by:
+
+
+<home-manager/modules/programs/keepassxc.nix>
+
+ |
programs.keychain.enable