18 lines
372 B
Nix
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;
|
|
};
|
|
};
|
|
}
|