diff options
Diffstat (limited to 'meta/rice/fastfetch')
| -rw-r--r-- | meta/rice/fastfetch/default.nix | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/meta/rice/fastfetch/default.nix b/meta/rice/fastfetch/default.nix new file mode 100644 index 0000000..8ae6284 --- /dev/null +++ b/meta/rice/fastfetch/default.nix @@ -0,0 +1,34 @@ +{ pkgs, ... }: { + programs.fastfetch = { + enable = true; + + settings = { + logo = { + source = "~/Downloads/91363-1550240807.png"; + width = 30; + + padding = { + top = 0; + }; + }; + + modules = [ + "title" + "break" + "os" + "kernel" + "uptime" + "packages" + "shell" + "de" + "wm" + "terminal" + "cpu" + "gpu" + "memory" + "break" + "colors" + ]; + }; + }; +} |