From 3fb27d400134d7c37db71afc62a976cf3702e2ef Mon Sep 17 00:00:00 2001 From: Nydragon Date: Sat, 24 Aug 2024 20:55:45 +0200 Subject: [PATCH] feat(hyfetch): add with fastfetch backend --- home/terminal/default.nix | 1 + home/terminal/hyfetch.nix | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 home/terminal/hyfetch.nix diff --git a/home/terminal/default.nix b/home/terminal/default.nix index 58cec1b..6525127 100644 --- a/home/terminal/default.nix +++ b/home/terminal/default.nix @@ -5,5 +5,6 @@ ./git ./fish ./btop.nix + ./hyfetch.nix ]; } diff --git a/home/terminal/hyfetch.nix b/home/terminal/hyfetch.nix new file mode 100644 index 0000000..2697cd4 --- /dev/null +++ b/home/terminal/hyfetch.nix @@ -0,0 +1,15 @@ +{ + programs.fastfetch.enable = true; + programs.hyfetch = { + enable = true; + settings = { + mode = "rgb"; # dunno the other value :sob: + lightness = 0.7; # u may change this + distro = "nixos"; + preset = "pansexual"; # sexuality + light_dark = "dark"; # u not crazy are u + backend = "fastfetch"; + color_align.mode = "horizontal"; # looks better + }; + }; +}