summaryrefslogtreecommitdiff
path: root/rice/fastfetch/default.nix
diff options
context:
space:
mode:
authorFuwn <[email protected]>2024-06-22 04:24:07 -0700
committerFuwn <[email protected]>2024-06-22 04:24:07 -0700
commitf440ba84f27fb322448e444b7eb62ff56033fc67 (patch)
tree8b041fc95766367e4a6fa99b6594dadb1728dacb /rice/fastfetch/default.nix
downloadnixos-config-f440ba84f27fb322448e444b7eb62ff56033fc67.tar.xz
nixos-config-f440ba84f27fb322448e444b7eb62ff56033fc67.zip
feat: initial configuration
Diffstat (limited to 'rice/fastfetch/default.nix')
-rw-r--r--rice/fastfetch/default.nix31
1 files changed, 31 insertions, 0 deletions
diff --git a/rice/fastfetch/default.nix b/rice/fastfetch/default.nix
new file mode 100644
index 0000000..ba325d2
--- /dev/null
+++ b/rice/fastfetch/default.nix
@@ -0,0 +1,31 @@
+{ 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"
+ ];
+ };
+ };
+}