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

12 lines
198 B
Nix

{ inputs, config, ... }:
{
stylix =
let
design = inputs.design;
cfg = config.module.themes.stylix;
in
{
base16Scheme = "${design}/base16/${cfg.theme}.yaml";
};
}