From 28b416db37b94fe5f5d61658475b182307a6a5fb Mon Sep 17 00:00:00 2001
From: rycee
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