From 6df9e6ae432bcdb2fa53f5ef8773460e25ba94e7 Mon Sep 17 00:00:00 2001 From: khaneliman Date: Thu, 6 Nov 2025 13:23:37 +0000 Subject: [PATCH 1/3] deploy: 432bc8a5da66638b5f139588efd6c4bd327e4cdc --- options.xhtml | 539 +------------------------------------------------- 1 file changed, 1 insertion(+), 538 deletions(-) diff --git a/options.xhtml b/options.xhtml index 910f4721c..c367d9afa 100644 --- a/options.xhtml +++ b/options.xhtml @@ -16351,7 +16351,7 @@ boolean

for supported values.

Type: -open submodule of (TOML value)

+TOML value

Default: { }

@@ -16373,543 +16373,6 @@ open submodule of (TOML value)

-

Declared by:

- - -
- -<home-manager/modules/programs/aerospace.nix> - -
- -
- - programs.aerospace.userSettings.enable-normalization-flatten-containers - - -
-
-

Containers that have only one child are “flattened”.

- -

Type: -boolean

- -

Default: -true

- -

Declared by:

- - -
- -<home-manager/modules/programs/aerospace.nix> - -
-
-
- - programs.aerospace.userSettings.enable-normalization-opposite-orientation-for-nested-containers - - -
-
-

Containers that nest into each other must have opposite orientations.

- -

Type: -boolean

- -

Default: -true

- -

Declared by:

- - -
- -<home-manager/modules/programs/aerospace.nix> - -
-
-
- - programs.aerospace.userSettings.accordion-padding - - -
-
-

Padding between windows in an accordion container.

- -

Type: -signed integer

- -

Default: -30

- -

Declared by:

- - -
- -<home-manager/modules/programs/aerospace.nix> - -
-
-
- - programs.aerospace.userSettings.after-startup-command - - -
-
-

A list of AeroSpace commands to execute immediately after the AeroSpace application starts. -These commands are written to your aerospace.toml config file and are run after the after-login-command sequence.

A list of all available commands can be found at https://nikitabobko.github.io/AeroSpace/commands.

While this module checks for valid command names, using incorrect arguments can still cause issues. -If AeroSpace is not behaving correctly after startup, check the logs for errors with cat /tmp/aerospace.err.log.

- -

Type: -list of string

- -

Default: -[ ]

- -

Example:

[
-  "exec-and-forget open -n /System/Applications/Utilities/Terminal.app"
-  "layout tiles accordion"
-]
-
- -

Declared by:

- - -
- -<home-manager/modules/programs/aerospace.nix> - -
-
-
- - programs.aerospace.userSettings.default-root-container-layout - - -
-
-

Default layout for the root container.

- -

Type: -one of “tiles”, “accordion”

- -

Default: -"tiles"

- -

Declared by:

- - -
- -<home-manager/modules/programs/aerospace.nix> - -
-
-
- - programs.aerospace.userSettings.default-root-container-orientation - - -
-
-

Default orientation for the root container.

- -

Type: -one of “horizontal”, “vertical”, “auto”

- -

Default: -"auto"

- -

Declared by:

- - -
- -<home-manager/modules/programs/aerospace.nix> - -
-
-
- - programs.aerospace.userSettings.exec-on-workspace-change - - -
-
-

Commands to run every time workspace changes.

- -

Type: -list of string

- -

Default: -[ ]

- -

Example:

[
-  "/bin/bash"
-  "-c"
-  "sketchybar --trigger aerospace_workspace_change FOCUSED_WORKSPACE=$AEROSPACE_FOCUSED_WORKSPACE"
-]
-
- -

Declared by:

- - -
- -<home-manager/modules/programs/aerospace.nix> - -
-
-
- - programs.aerospace.userSettings.key-mapping.preset - - -
-
-

Keymapping preset.

- -

Type: -one of “qwerty”, “dvorak”, “colemak”

- -

Default: -"qwerty"

- -

Declared by:

- - -
- -<home-manager/modules/programs/aerospace.nix> - -
-
-
- - programs.aerospace.userSettings.on-focus-changed - - -
-
-

Commands to run every time focused window or workspace changes.

- -

Type: -list of string

- -

Default: -[ ]

- -

Example:

[
-  "move-mouse monitor-lazy-center"
-]
-
- -

Declared by:

- - -
- -<home-manager/modules/programs/aerospace.nix> - -
-
-
- - programs.aerospace.userSettings.on-focused-monitor-changed - - -
-
-

Commands to run every time focused monitor changes.

- -

Type: -list of string

- -

Default:

[
-  "move-mouse monitor-lazy-center"
-]
-
- -

Declared by:

- - -
- -<home-manager/modules/programs/aerospace.nix> - -
-
-
- - programs.aerospace.userSettings.on-window-detected - - -
-
-

Commands to run every time a new window is detected with optional conditions.

- -

Type: -list of (submodule)

- -

Default: -[ ]

- -

Example:

[
-  {
-    check-further-callbacks = false;
-    if = {
-      app-id = "Another.Cool.App";
-      app-name-regex-substring = "CoolApp";
-      during-aerospace-startup = false;
-      window-title-regex-substring = "Title";
-      workspace = "cool-workspace";
-    };
-    run = [
-      "move-node-to-workspace m"
-      "resize-node"
-    ];
-  }
-]
-
- -

Declared by:

- - -
- -<home-manager/modules/programs/aerospace.nix> - -
-
-
- - programs.aerospace.userSettings.on-window-detected.*.check-further-callbacks - - -
-
-

Whether to check further callbacks after this rule (optional).

- -

Type: -null or boolean

- -

Default: -null

- -

Declared by:

- - -
- -<home-manager/modules/programs/aerospace.nix> - -
-
-
- - programs.aerospace.userSettings.on-window-detected.*.if - - -
-
-

Conditions for detecting a window.

- -

Type: -submodule

- -

Default: -{ }

- -

Declared by:

- - -
- -<home-manager/modules/programs/aerospace.nix> - -
-
-
- - programs.aerospace.userSettings.on-window-detected.*.if.app-id - - -
-
-

The application ID to match (optional).

- -

Type: -null or string

- -

Default: -null

- -

Declared by:

- - -
- -<home-manager/modules/programs/aerospace.nix> - -
-
-
- - programs.aerospace.userSettings.on-window-detected.*.if.app-name-regex-substring - - -
-
-

Regex substring to match the app name (optional).

- -

Type: -null or string

- -

Default: -null

- -

Declared by:

- - -
- -<home-manager/modules/programs/aerospace.nix> - -
-
-
- - programs.aerospace.userSettings.on-window-detected.*.if.during-aerospace-startup - - -
-
-

Whether to match during aerospace startup (optional).

- -

Type: -null or boolean

- -

Default: -null

- -

Declared by:

- - -
- -<home-manager/modules/programs/aerospace.nix> - -
-
-
- - programs.aerospace.userSettings.on-window-detected.*.if.window-title-regex-substring - - -
-
-

Substring to match in the window title (optional).

- -

Type: -null or string

- -

Default: -null

- -

Declared by:

- - -
- -<home-manager/modules/programs/aerospace.nix> - -
-
-
- - programs.aerospace.userSettings.on-window-detected.*.if.workspace - - -
-
-

The workspace name to match (optional).

- -

Type: -null or string

- -

Default: -null

- -

Declared by:

- - -
- -<home-manager/modules/programs/aerospace.nix> - -
-
-
- - programs.aerospace.userSettings.on-window-detected.*.run - - -
-
-

Commands to execute when the conditions match (required).

- -

Type: -string or list of string

- -

Example:

[
-  "move-node-to-workspace m"
-  "resize-node"
-]
-
- -

Declared by:

- - -
- -<home-manager/modules/programs/aerospace.nix> - -
-
-
- - programs.aerospace.userSettings.workspace-to-monitor-force-assignment - - -
-
-

Map workspaces to specific monitors. -Left-hand side is the workspace name, and right-hand side is the monitor pattern.

- -

Type: -null or (attribute set of (signed integer or string or list of string))

- -

Default: -null

- -

Example:

{
-  "1" = 1;
-  "2" = "main";
-  "3" = "secondary";
-  "4" = "built-in";
-  "5" = "^built-in retina display$";
-  "6" = [
-    "secondary"
-    "dell"
-  ];
-}
-
-

Declared by:

From 478812507b9a7088bc25274e73e525af6e610977 Mon Sep 17 00:00:00 2001 From: khaneliman Date: Thu, 6 Nov 2025 16:28:54 +0000 Subject: [PATCH 2/3] deploy: ba15db2a1565e1779de23bdbacbc420412648289 --- options.xhtml | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) diff --git a/options.xhtml b/options.xhtml index c367d9afa..9c2c63a39 100644 --- a/options.xhtml +++ b/options.xhtml @@ -32462,6 +32462,45 @@ boolean

Example: true

+

Declared by:

+ + +
+ +<home-manager/modules/programs/fish.nix> + +
+ +
+ + programs.fish.completions + + +
+
+

Custom fish completions. For more information see +https://fishshell.com/docs/current/completions.html.

+ +

Type: +attribute set of (strings concatenated with “\n” or (submodule))

+ +

Default: +{ }

+ +

Example:

{
+  my-prog = ''
+    complete -c myprog -s o -l output
+  '';
+
+  my-app = {
+    body = ''
+      complete -c myapp -s -v
+    '';
+  };
+}
+
+
+

Declared by:

From 34508b725838b6bc94c31b759cb5440ba713bd2d Mon Sep 17 00:00:00 2001 From: khaneliman Date: Thu, 6 Nov 2025 16:44:58 +0000 Subject: [PATCH 3/3] deploy: 2907788315a73d3292140b4d59b5d95796565625 --- options.xhtml | 91 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 91 insertions(+) diff --git a/options.xhtml b/options.xhtml index 9c2c63a39..7198d1d0d 100644 --- a/options.xhtml +++ b/options.xhtml @@ -113079,6 +113079,97 @@ string

+
+ + services.tomat.enable + + +
+
+

Whether to enable Tomat Pomodoro server.

+ +

Type: +boolean

+ +

Default: +false

+ +

Example: +true

+ +

Declared by:

+ + +
+ +<home-manager/modules/services/tomat.nix> + +
+
+
+ + services.tomat.package + + +
+
+

The tomat package to use.

+ +

Type: +package

+ +

Default: +pkgs.tomat

+ +

Declared by:

+ + +
+ +<home-manager/modules/services/tomat.nix> + +
+
+
+ + services.tomat.settings + + +
+
+

Tomat configuration. +See https://github.com/jolars/tomat/blob/main/docs/configuration.md for supported values.

+ +

Type: +open submodule of (TOML value)

+ +

Default: +{ }

+ +

Example:

{
+  notification = {
+    enabled = true;
+  };
+  sound = {
+    enabled = true;
+  };
+  timer = {
+    auto_advance = false;
+    break = 5;
+    work = 25;
+  };
+}
+
+ +

Declared by:

+ + +
+ +<home-manager/modules/services/tomat.nix> + +
+
services.trayer.enable