diff options
Diffstat (limited to '')
-rw-r--r-- | modules/hm/sils/default.nix | 1 | ||||
-rw-r--r-- | modules/hm/sils/hyfetch.nix | 31 |
2 files changed, 32 insertions, 0 deletions
diff --git a/modules/hm/sils/default.nix b/modules/hm/sils/default.nix index a3ff1ed..34731a7 100644 --- a/modules/hm/sils/default.nix +++ b/modules/hm/sils/default.nix @@ -6,6 +6,7 @@ ./firefox ./foot.nix ./git.nix + ./hyfetch.nix ./hyprland.nix ./jameica.nix ./kdeconnect.nix diff --git a/modules/hm/sils/hyfetch.nix b/modules/hm/sils/hyfetch.nix new file mode 100644 index 0000000..b40a37e --- /dev/null +++ b/modules/hm/sils/hyfetch.nix @@ -0,0 +1,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 = "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 = []; + }; + }; + }; +} |