11.stylix/modules/cavalier/hm.nix
2025-05-22 07:44:19 -07:00

18 lines
372 B
Nix

{ mkTarget, lib, ... }:
mkTarget {
name = "cavalier";
humanName = "Cavalier";
configElements =
{ colors }:
{
programs.cavalier.settings.general = {
ColorProfiles = lib.singleton {
Name = "Stylix";
FgColors = [ colors.base05 ];
BgColors = [ colors.base00 ];
};
ActiveProfile = 0;
};
};
}