1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2025-07-30 11:37:44 +00:00

Use tmTheme for bat

This commit is contained in:
RGBCube 2023-11-26 23:18:35 +03:00
parent 515ff88428
commit e0199c9aae
No known key found for this signature in database
2 changed files with 6 additions and 5 deletions

6
flake.lock generated
View file

@ -164,11 +164,11 @@
},
"themes": {
"locked": {
"lastModified": 1701029691,
"narHash": "sha256-2GTMVcJmqM8tmiohIqTROZNSTDFdpqMk0xOo57hlu6E=",
"lastModified": 1701030543,
"narHash": "sha256-wjGW7Zkzw3L/jBfg7pI7yzO5aVFspwUiZjByXftctlc=",
"owner": "RGBCube",
"repo": "ThemeNix",
"rev": "050a2401644eb010cdd23043c10f318892733f9f",
"rev": "75f65de9384a0b3698e4cfa537a5f843a604cda6",
"type": "github"
},
"original": {

View file

@ -1,4 +1,4 @@
{ homeConfiguration, enabled, ... }:
{ upkgs, homeConfiguration, enabled, ... }:
homeConfiguration [ "nixos" "root" ] {
programs.nushell.environmentVariables = {
@ -12,6 +12,7 @@ homeConfiguration [ "nixos" "root" ] {
};
programs.bat = enabled {
config.theme = "gruvbox-dark";
config.theme = "gruvbox-dark-hard";
themes.gruvbox-dark-hard = upkgs.theme.tmTheme;
};
}