feat(hyfetch): custom_colors, custom args

Changed files
+31 -1
home
+1 -1
home/emily/cli/default.nix
··· 5 5 cloc 6 6 duf # util 7 7 glow 8 - hyfetch 9 8 irssi 10 9 pandoc 11 10 pfetch # put in file ··· 24 23 ./fish.nix 25 24 ./git.nix 26 25 ./hledger.nix 26 + ./hyfetch.nix 27 27 ./nvim.nix 28 28 ./pfetch.nix 29 29 ./ssh.nix
+30
home/emily/cli/hyfetch.nix
··· 1 + { pkgs, ... }: 2 + { 3 + home.packages = with pkgs; [ hyfetch ]; 4 + programs.hyfetch = { 5 + enable = true; 6 + settings = { 7 + "preset" = "lesbian"; 8 + "mode" = "rgb"; 9 + "light_dark" = "dark"; 10 + "lightness" = 0.65; 11 + "color_align" = { 12 + "mode" = "custom"; 13 + "custom_colors" = { 14 + "1" = 3; 15 + "2" = 0; 16 + "3" = 4; 17 + "4" = 0; 18 + "5" = 1; 19 + "6" = 0; 20 + }; 21 + "fore_back" = []; 22 + }; 23 + "backend" = "neofetch"; 24 + "args" = "--disable model resolution icons"; 25 + "distro" = "nixos_colorful"; 26 + "pride_month_shown" = []; 27 + "pride_month_disable" = false; 28 + }; 29 + }; 30 + }