Re-enable ncspot

This commit is contained in:
Evie Litherland-Smith 2023-10-23 08:56:04 +01:00
parent 33cb97192d
commit 895c1b6fdd
2 changed files with 15 additions and 11 deletions

View file

@ -5,6 +5,7 @@ in {
"player-icons" = { "player-icons" = {
"default" = "󰲸"; "default" = "󰲸";
"mpv" = "󰤽"; "mpv" = "󰤽";
"ncspot" = "󰓇";
"Spot" = "󰓇"; "Spot" = "󰓇";
}; };
"status-icons" = { "status-icons" = {

View file

@ -6,7 +6,8 @@
enable = true; enable = true;
network.startWhenNeeded = true; network.startWhenNeeded = true;
}; };
programs.mpv = { programs = {
mpv = {
enable = true; enable = true;
scripts = with pkgs.mpvScripts; [ scripts = with pkgs.mpvScripts; [
mpris mpris
@ -18,4 +19,6 @@
webtorrent-mpv-hook webtorrent-mpv-hook
]; ];
}; };
ncspot.enable = true;
};
} }