mirror of
https://github.com/danth/stylix
synced 2025-03-04 07:07:17 +00:00
16 lines
354 B
Nix
16 lines
354 B
Nix
|
{ pkgs, config }:
|
||
|
|
||
|
let
|
||
|
theme = config.lib.stylix.colors {
|
||
|
templateRepo = pkgs.fetchFromGitHub {
|
||
|
owner = "tomyun";
|
||
|
repo = "base16-fish";
|
||
|
rev = "7f647967fddedaf803191bc9113b13d2071dc3cf";
|
||
|
sha256 = "IGUbLjsmmAvB9UKGkR7oqdpjeVEfzt83GpyBkrZf2O4=";
|
||
|
};
|
||
|
};
|
||
|
in ''
|
||
|
source ${theme}
|
||
|
base16-${config.lib.stylix.colors.slug}
|
||
|
''
|