Link: https://github.com/nix-community/stylix/pull/2041 Link: https://github.com/nix-community/stylix/pull/1976#discussion_r2539186937 Reviewed-by: NAHO <90870942+trueNAHO@users.noreply.github.com>
15 lines
295 B
Nix
15 lines
295 B
Nix
name: [
|
|
{ stylix.targets.${name}.themeBody = import ./theme-header.nix; }
|
|
(
|
|
{ fonts }:
|
|
{
|
|
stylix.targets.${name}.themeBody = import ./font-theme.nix fonts;
|
|
}
|
|
)
|
|
(
|
|
{ colors }:
|
|
{
|
|
stylix.targets.${name}.themeBody = import ./color-theme.nix colors;
|
|
}
|
|
)
|
|
]
|