fix build failures

This commit is contained in:
notgne2 2024-10-28 11:24:22 -07:00
parent 42d3c40eaf
commit eac17cd582
No known key found for this signature in database
3 changed files with 56 additions and 63 deletions

View file

@ -321,7 +321,7 @@ in {
programs.kermit.extraConfig = builtins.readFile (genTheme inputs.base16-kermit);
# Foot
programs.foot.settings.main.include = "${genTheme inputs.base16-foot}";
programs.foot.settings.main.include = toString (mustache scheme "${inputs.tinted-foot}/templates/base16.mustache");
# neovim
xdg.configFile."nvim/colors/base16.vim".source = "${genTheme inputs.base16-vim}";
@ -367,7 +367,7 @@ in {
[
(
mkIf config.programs.vscode.enable {
".vscode-oss/extensions/base16-1.0.0/themes/nix-colors.json".source = genTheme inputs.base16-vscode;
".vscode-oss/extensions/base16-1.0.0/themes/nix-colors.json".source = mustache scheme "${inputs.tinted-vscode}/templates/base16.mustache";
".vscode-oss/extensions/base16-1.0.0/package.json".text = builtins.toJSON {
name = "nix colors";
displayName = "Automatic Nix-generated base16 colors";