mirror of
https://github.com/danth/stylix
synced 2024-12-03 09:29:14 +00:00
b42555850b
This reduces our reliance on import-from-derivation, so evaluation is faster.
10 lines
194 B
Nix
10 lines
194 B
Nix
{ pkgs, config }:
|
|
|
|
let
|
|
theme = config.lib.stylix.colors {
|
|
templateRepo = config.lib.stylix.templates.base16-fish;
|
|
};
|
|
in ''
|
|
source ${theme}
|
|
base16-${config.lib.stylix.colors.slug}
|
|
''
|