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

12 lines
198 B
Nix
Raw Normal View History

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