From 28b416db37b94fe5f5d61658475b182307a6a5fb Mon Sep 17 00:00:00 2001 From: rycee Date: Fri, 10 May 2024 10:43:51 +0000 Subject: [PATCH] deploy: f61917cbaa6dba317e757aefd0bbb56403aff2f8 --- options.xhtml | 108 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 108 insertions(+) diff --git a/options.xhtml b/options.xhtml index 55faa64c3..25d9bfdad 100644 --- a/options.xhtml +++ b/options.xhtml @@ -18210,6 +18210,114 @@ boolean

+
+ + programs.fastfetch.enable + + +
+
+

Whether to enable Fastfetch.

+ +

Type: +boolean

+ +

Default: +false

+ +

Example: +true

+ +

Declared by:

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

The fastfetch package to use.

+ +

Type: +package

+ +

Default: +pkgs.fastfetch

+ +

Declared by:

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

Configuration written to $XDG_CONFIG_HOME/fastfetch/config.jsonc. +See https://github.com/fastfetch-cli/fastfetch/wiki/Json-Schema +for the documentation.

+ +

Type: +JSON value

+ +

Default: +{ }

+ +

Example:

{
+  logo = {
+    source = "nixos_small";
+    padding = {
+      right = 1;
+    };
+  };
+  display = {
+    binaryPrefix = "si";
+    color = "blue";
+    separator = "  ";
+  };
+  modules = [
+    {
+      type = "datetime";
+      key = "Date";
+      format = "{1}-{3}-{11}";
+    }
+    {
+      type = "datetime";
+      key = "Time";
+      format = "{14}:{17}:{20}";
+    }
+    "break"
+    "player"
+    "media"
+  ];
+};
+
+
+ +

Declared by:

+ + +
+ +<home-manager/modules/programs/fastfetch.nix> + +
+
programs.fd.enable