diff options
author | Silas Schöffel <sils@sils.li> | 2024-04-04 17:06:23 +0200 |
---|---|---|
committer | Silas Schöffel <sils@sils.li> | 2024-04-04 17:06:23 +0200 |
commit | 924ec30e7075ea7a9dbac569a537d876f9146850 (patch) | |
tree | 11ff56048f05536a1905490137333b3596d0ee18 /hm/hyfetch | |
parent | users/default.nix: delete (diff) | |
download | nix-config-924ec30e7075ea7a9dbac569a537d876f9146850.tar.gz nix-config-924ec30e7075ea7a9dbac569a537d876f9146850.zip |
refactor: move users/sils dir to hm
Diffstat (limited to 'hm/hyfetch')
-rw-r--r-- | hm/hyfetch/default.nix | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/hm/hyfetch/default.nix b/hm/hyfetch/default.nix new file mode 100644 index 0000000..596b26d --- /dev/null +++ b/hm/hyfetch/default.nix @@ -0,0 +1,19 @@ +{...}: { + programs.hyfetch = { + enable = true; + settings = { + preset = "rainbow"; + mode = "rgb"; + light_dark = "dark"; + lightness = 0.5; + color_align = { + mode = "horizontal"; + custom_colors = []; + fore_back = null; + }; + backend = "neofetch"; + distro = null; + pride_month_shown = []; + }; + }; +} |