From 67162749961b87183012e56c6d632cfd5f919dd7 Mon Sep 17 00:00:00 2001 From: Miranda Marquez Date: Tue, 4 Jun 2024 17:23:37 -0800 Subject: [PATCH] add fastfetch configuration --- home.nix | 11 ----------- modules/shell.nix | 39 +++++++++++++++++++++++++++++++++++++++ 2 files changed, 39 insertions(+), 11 deletions(-) diff --git a/home.nix b/home.nix index 70821ea..7c9c44f 100644 --- a/home.nix +++ b/home.nix @@ -94,17 +94,6 @@ with lib.hm.gvariant; # recursive = true; # }; - programs.hyfetch = { - enable = true; - settings = { - preset = "nonbinary"; - mode = "rgb"; - color_align = { - mode = "horizontal"; - }; - backend = "fastfetch"; - }; - }; programs.gpg = { enable = true; diff --git a/modules/shell.nix b/modules/shell.nix index d4c0a3a..f431eb6 100644 --- a/modules/shell.nix +++ b/modules/shell.nix @@ -40,4 +40,43 @@ enable = true; options = [ "--cmd cd" ]; }; + programs.fastfetch = { + enable = true; + settings.modules = [ + "title" + "separator" + "os" + "host" + "kernel" + "uptime" + "packages" + "display" + "de" + "wm" + "cursor" + "terminal" + # "terminalfont" + "cpu" + "gpu" + "memory" + "swap" + "disk" + "localip" + "battery" + # "poweradapter" + "break" + "colors" + ]; + }; + programs.hyfetch = { + enable = true; + settings = { + preset = "nonbinary"; + mode = "rgb"; + color_align = { + mode = "horizontal"; + }; + backend = "fastfetch"; + }; + }; }