1
0
Fork 0
mirror of https://git.sr.ht/~neverness/ultima synced 2025-01-04 11:03:52 +00:00
ultima/modules/colors.nix

8 lines
175 B
Nix
Raw Normal View History

2024-11-24 08:17:07 +00:00
{ inputs, config, ... }: {
2024-11-23 14:31:05 +00:00
stylix = let
2024-11-24 08:17:07 +00:00
design = inputs.design;
2024-11-24 08:30:09 +00:00
cfg = config.module.themes.stylix;
2024-11-24 08:17:07 +00:00
in { base16Scheme = "${design}/base16/${cfg.theme}.yaml"; };
2024-11-23 14:31:05 +00:00
}
2024-11-24 08:17:07 +00:00