marleyos/modules/home/programs/hyfetch/default.nix

37 lines
687 B
Nix
Raw Normal View History

2024-11-16 17:31:46 -08:00
{
lib,
config,
...
}: let
cfg = config.marleyos.programs.hyfetch;
in {
options.marleyos.programs.hyfetch.enable = lib.mkEnableOption "hyfetch";
2024-11-16 17:31:46 -08:00
2024-11-16 20:15:36 -08:00
imports = [
./neofetch.nix
];
config = lib.mkIf cfg.enable {
2024-11-16 17:31:46 -08:00
programs.hyfetch = {
enable = true;
settings = {
preset = "lesbian";
mode = "rgb";
light_dark = "dark";
lightness = 0.7;
color_align = {
mode = "horizontal";
custom_colors = [];
2024-11-16 17:31:46 -08:00
fore_back = null;
};
backend = "neofetch";
args = null;
distro = null;
pride_month_shown = [];
2024-11-16 17:31:46 -08:00
pride_month_disable = false;
};
};
};
}