From c11b72359721cce9b02f20e5a16fd1ff52f11a67 Mon Sep 17 00:00:00 2001 From: khaneliman Date: Fri, 18 Apr 2025 18:36:31 +0000 Subject: [PATCH] deploy: fc09cb7aaadb70d6c4898654ffc872f0d2415df9 --- options.xhtml | 92 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 92 insertions(+) diff --git a/options.xhtml b/options.xhtml index 7d78c2f0b..a66c161bd 100644 --- a/options.xhtml +++ b/options.xhtml @@ -35631,6 +35631,98 @@ list of package

+
+ + 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