this repo has no description
nix
1{
2 den.aspects.base = {
3 homeManager =
4 { pkgs, ... }:
5 {
6 home.packages = [ pkgs.hyfetch ];
7
8 xdg.configFile."hyfetch.json".text = ''
9 {
10 "preset": "pansexual",
11 "mode": "rgb",
12 "light_dark": "dark",
13 "lightness": 0.65,
14 "color_align": {
15 "mode": "horizontal",
16 "custom_colors": [],
17 "fore_back": null
18 },
19 "backend": "neofetch",
20 "args": null,
21 "distro": null,
22 "pride_month_shown": [],
23 "pride_month_disable": true
24 }
25 '';
26 };
27 };
28}