From 3bb44a39ee79ddbbd7a3be6e4b01b4fe9511f6df Mon Sep 17 00:00:00 2001 From: khaneliman Date: Sun, 13 Jul 2025 01:42:44 +0000 Subject: [PATCH] deploy: 908200d6808bf961718ae96c5aad7ae6b0f8bda9 --- options.xhtml | 119 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 119 insertions(+) diff --git a/options.xhtml b/options.xhtml index 0a53f598c..97ff71d4b 100644 --- a/options.xhtml +++ b/options.xhtml @@ -75830,6 +75830,125 @@ boolean

Default: false

+

Declared by:

+ + +
+ +<home-manager/modules/programs/zellij.nix> + +
+ +
+ + programs.zellij.layouts + + +
+
+

Configuration written to +$XDG_CONFIG_HOME/zellij/layouts/<layout>.kdl.

See https://zellij.dev/documentation for the full +list of options.

+ +

Type: +attribute set of (YAML 1.1 value or absolute path or strings concatenated with ā€œ\nā€)

+ +

Default: +{ }

+ +

Example:

{
+  dev = {
+    layout = {
+      _children = [
+        {
+          default_tab_template = {
+            _children = [
+              {
+                pane = {
+                  size = 1;
+                  borderless = true;
+                  plugin = {
+                    location = "zellij:tab-bar";
+                  };
+                };
+              }
+              { "children" = { }; }
+              {
+                pane = {
+                  size = 2;
+                  borderless = true;
+                  plugin = {
+                    location = "zellij:status-bar";
+                  };
+                };
+              }
+            ];
+          };
+        }
+        {
+          tab = {
+            _props = {
+              name = "Project";
+              focus = true;
+            };
+            _children = [
+              {
+                pane = {
+                  command = "nvim";
+                };
+              }
+            ];
+          };
+        }
+        {
+          tab = {
+            _props = {
+              name = "Git";
+            };
+            _children = [
+              {
+                pane = {
+                  command = "lazygit";
+                };
+              }
+            ];
+          };
+        }
+        {
+          tab = {
+            _props = {
+              name = "Files";
+            };
+            _children = [
+              {
+                pane = {
+                  command = "yazi";
+                };
+              }
+            ];
+          };
+        }
+        {
+          tab = {
+            _props = {
+              name = "Shell";
+            };
+            _children = [
+              {
+                pane = {
+                  command = "zsh";
+                };
+              }
+            ];
+          };
+        }
+      ];
+    };
+  };
+}
+
+
+

Declared by: