Ad ncspot spotify ncurses interface

This commit is contained in:
Evie Litherland-Smith 2023-08-01 15:26:02 +01:00
parent 689ecdc0ba
commit fe53ce185c

View file

@ -1,24 +1,22 @@
{ { pkgs, tokyonight, ... }: {
pkgs,
tokyonight,
...
}: {
programs = { programs = {
bat = { bat = {
enable = true; enable = true;
config.theme = "tokyonight"; config.theme = "tokyonight";
themes.tokyonight = builtins.readFile "${tokyonight}/extras/sublime/tokyonight_night.tmTheme"; themes.tokyonight = builtins.readFile
"${tokyonight}/extras/sublime/tokyonight_night.tmTheme";
}; };
gitui = { gitui = {
enable = true; enable = true;
keyConfig = builtins.readFile (pkgs.fetchFromGitHub { keyConfig = builtins.readFile (pkgs.fetchFromGitHub {
owner = "extrawurst"; owner = "extrawurst";
repo = "gitui"; repo = "gitui";
rev = "8f7f35b8a97e38a0e181032285554cd0961d588e"; rev = "8f7f35b8a97e38a0e181032285554cd0961d588e";
sha256 = "sha256-zJDf6WhaUe8QTPCoVAdfCdUvYEcQpm2qddQiKw41kjY="; sha256 = "sha256-zJDf6WhaUe8QTPCoVAdfCdUvYEcQpm2qddQiKw41kjY=";
} } + "/vim_style_key_config.ron");
+ "/vim_style_key_config.ron"); theme =
theme = builtins.readFile "${tokyonight}/extras/gitui/tokyonight_night.ron"; builtins.readFile "${tokyonight}/extras/gitui/tokyonight_night.ron";
}; };
ncspot.enable = true;
}; };
} }