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 + }; + }; +}