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}
|
|
''
|