diff --git a/modules/home-manager/fastfetch.nix b/modules/home-manager/fastfetch.nix new file mode 100644 index 0000000..ecfed9a --- /dev/null +++ b/modules/home-manager/fastfetch.nix @@ -0,0 +1,53 @@ +{ pkgs, ... }: + +{ + programs.fastfetch = { + enable = true; + settings = { + logo = { + source = "~/pictures/smol-penguin.png"; + type = "kitty-direct"; + width = 18; + height = 9; + padding = { + top = 2; + left = 1; + right = 3; + }; + }; + display = { + separator = " -> "; + }; + modules = [ + "title" + { + type = "custom"; + format = "────────── Env ──────────"; + } + { + type = "os"; + key = "OS "; + } + { + type = "wm"; + key = "WM "; + } + "editor" + "break" + { + type = "custom"; + format = "────────── Sys ──────────"; + } + "cpu" + "gpu" + { + type = "memory"; + key = "MEM"; + } + "vulkan" + "disk" + "battery" + ]; + }; + }; +}