diff options
Diffstat (limited to 'fastfetch.nix')
| -rw-r--r-- | fastfetch.nix | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/fastfetch.nix b/fastfetch.nix new file mode 100644 index 0000000..5f7a348 --- /dev/null +++ b/fastfetch.nix @@ -0,0 +1,42 @@ +{ config, pkgs, ... }: + +{ + programs.fastfetch = { + enable = true; + settings = { + logo = { + padding = { + right = 1; + }; + }; + modules = [ + "title" + "separator" + "os" + "host" + "kernel" + "uptime" + "datetime" + "packages" + "shell" + "display" + "de" + "wm" + "theme" + "icons" + "terminal" + "terminalfont" + "cpu" + "gpu" + "memory" + "swap" + "disk" + "battery" + "poweradapter" + "font" + "cursor" + "colors" + ]; + }; + }; +} |
