From ef83b2b3aa535d715431e865e75d6d926441471d Mon Sep 17 00:00:00 2001 From: khaneliman Date: Fri, 19 Sep 2025 02:37:37 +0000 Subject: [PATCH] deploy: 3cb08dd360e3bee6cf2ca4dd011802c523695fc1 --- options.xhtml | 186 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 186 insertions(+) diff --git a/options.xhtml b/options.xhtml index e50bc2868..8692dd52e 100644 --- a/options.xhtml +++ b/options.xhtml @@ -55933,6 +55933,192 @@ attribute set of string

+
+ + programs.nvchecker.enable + + +
+
+

Whether to enable nvchecker.

+ +

Type: +boolean

+ +

Default: +false

+ +

Example: +true

+ +

Declared by:

+ + +
+ +<home-manager/modules/programs/nvchecker.nix> + +
+
+
+ + programs.nvchecker.package + + +
+
+

The nvchecker package to use.

+ +

Type: +null or package

+ +

Default: +pkgs.nvchecker

+ +

Declared by:

+ + +
+ +<home-manager/modules/programs/nvchecker.nix> + +
+
+
+ + programs.nvchecker.settings + + +
+
+

Configuration written to +$HOME/Library/Application Support/nvchecker/nvchecker.toml (on Darwin) or +$XDG_CONFIG_HOME/nvchecker/nvchecker.toml (otherwise). +See https://nvchecker.readthedocs.io/en/stable/usage.html#configuration-files +for the full list of options.

Environment variables and ~ are expanded, +and relative paths are relative to +${config.home.homeDirectory}/Library/Application Support/nvchecker/nvchecker/ (on Darwin) +or ${config.xdg.configHome}/nvchecker/ (otherwise).

+ +

Type: +TOML value

+ +

Default:

__config__ = {
+  oldver = "old_ver.json";
+  newver = "new_ver.json";
+};
+
+
+ +

Example:

{
+  __config__ = {
+    oldver = "my_custom_oldver.json";
+    newver = "~/seperately_placed_newver.json";
+    keyfile = "keyfile.toml";
+  };
+
+  nvchecker = {
+    source = "github";
+    github = "lilydjwg/nvchecker";
+  };
+}
+
+
+ +

Declared by:

+ + +
+ +<home-manager/modules/programs/nvchecker.nix> + +
+
+
+ + programs.nvchecker.settings.__config__ + + +
+
+

See https://nvchecker.readthedocs.io/en/stable/usage.html#configuration-files.

Environment variables and ~ are expanded, +and relative paths are relative to +${config.home.homeDirectory}/Library/Application Support/nvchecker/nvchecker/ (on Darwin) +or ${config.xdg.configHome}/nvchecker/ (otherwise).

+ +

Type: +TOML value

+ +

Default:

{
+  oldver = "old_ver.json";
+  newver = "new_ver.json";
+};
+
+
+ +

Declared by:

+ + +
+ +<home-manager/modules/programs/nvchecker.nix> + +
+
+
+ + programs.nvchecker.settings.__config__.newver + + +
+
+

The file to store ‘new’ (i.e. available) versions in.

Environment variables and ~ are expanded, +and relative paths are relative to +${config.home.homeDirectory}/Library/Application Support/nvchecker/nvchecker/ (on Darwin) +or ${config.xdg.configHome}/nvchecker/ (otherwise).

+ +

Type: +path

+ +

Default: +"new_ver.json"

+ +

Declared by:

+ + +
+ +<home-manager/modules/programs/nvchecker.nix> + +
+
+
+ + programs.nvchecker.settings.__config__.oldver + + +
+
+

The file to store ‘old’ (i.e. installed) version information in.

Environment variables and ~ are expanded, +and relative paths are relative to +${config.home.homeDirectory}/Library/Application Support/nvchecker/nvchecker/ (on Darwin) +or ${config.xdg.configHome}/nvchecker/ (otherwise).

+ +

Type: +path

+ +

Default: +"old_ver.json"

+ +

Declared by:

+ + +
+ +<home-manager/modules/programs/nvchecker.nix> + +
+
programs.nyxt.enable