1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2025-07-31 20:17:45 +00:00

Fix bat theme

This commit is contained in:
RGBCube 2023-12-12 15:20:29 +03:00
parent e08e3652ae
commit f97de554e6
No known key found for this signature in database

View file

@ -1,4 +1,4 @@
{ ulib, theme, ... }: with ulib; { ulib, pkgs, theme, ... }: with ulib;
homeConfiguration { homeConfiguration {
programs.nushell.environmentVariables = { programs.nushell.environmentVariables = {
@ -13,6 +13,6 @@ homeConfiguration {
programs.bat = enabled { programs.bat = enabled {
config.theme = "base16"; config.theme = "base16";
themes.base16 = theme.tmTheme; themes.base16.src = pkgs.writeText "base16.tmTheme" theme.tmTheme;
}; };
} }