mirror of
https://git.sr.ht/~neverness/ultima
synced 2025-01-01 20:23:53 +00:00
12 lines
198 B
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";
|
|
};
|
|
}
|