chore: oxi programs to be compiled

This commit is contained in:
DashieTM 2024-04-18 18:08:46 +02:00
parent 912751b0df
commit 6ddb5d9e6b
21 changed files with 477 additions and 208 deletions

View file

@ -1,40 +1,38 @@
{
xdg.configFile."ncspot/config.toml" = {
text = ''
notify = true
shuffle = true
cover_max_scale = 2
audio_cache_size = 50000
initial_screen = "library"
library_tabs = ["playlists"]
[theme]
background = "#1a1b26"
primary = "#c0caf5"
secondary = "#1a1b26"
title = "#e0af68"
playing = "#7dcfff"
playing_selected = "#73daca"
playing_bg = "#1a1b26"
highlight = "#73daca"
highlight_bg = "#1a1b26"
error = "#c0caf5"
error_bg = "#f7768e"
statusbar = "#24283b"
statusbar_progress = "#73daca"
statusbar_bg = "#7dcfff"
cmdline_bg = "#24283b"
search_match = "#bb9af7"
[keybindings]
"j" = "move left 1"
"k" = "move down 1"
"l" = "move up 1"
";" = "move right 1"
[notification_format]
title = "%artists"
body = "%title"
'';
{ pkgs, ... }: {
xdg.configFile."ncspot/config.toml".source = (pkgs.formats.toml { }).generate "ncspot" {
notify = true;
shuffle = true;
cover_max_scale = 2;
initial_screen = "library";
library_tabs = [ "playlists" ];
theme = {
background = "#1a1b26";
primary = "#9aa5ce";
secondary = "#414868";
title = "#9ece6a";
playing = "#7aa2f7";
playing_selected = "#bb9af7";
playing_bg = "#24283b";
highlight = "#c0caf5";
highlight_bg = "#24283b";
error = "#414868";
error_bg = "#f7768e";
statusbar = "#ff9e64";
statusbar_progress = "#7aa2f7";
statusbar_bg = "#1a1b26";
cmdline = "#c0caf5";
cmdline_bg = "#24283b";
search_match = "#f7768e";
};
keybindings = {
"j" = "move left 1";
"k" = "move down 1";
"l" = "move up 1";
";" = "move right 1";
};
notification_format = {
title = "%artists";
body = "%title";
};
};
}