blob: 08321e68869d7896ab3f0844675a37b23e6bd174 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
{
config,
lib,
...
}: let
cfg = config.sils.hyfetch;
in {
options.sils.hyfetch = {
enable = lib.mkEnableOption "hyfetch";
};
config = lib.mkIf cfg.enable {
programs.hyfetch = {
enable = true;
settings = {
preset = "nonbinary";
mode = "rgb";
light_dark = "dark";
lightness = 0.5;
color_align = {
mode = "horizontal";
custom_colors = [];
fore_back = null;
};
backend = "fastfetch";
distro = null;
pride_month_shown = [];
};
};
};
}
|