Remove ncspot

This commit is contained in:
Evie Litherland-Smith 2023-12-16 09:12:34 +00:00
parent 74ba6959ea
commit e0ef310d96
2 changed files with 12 additions and 18 deletions

View file

@ -77,7 +77,6 @@
"interval" = 1;
"player-icons" = {
"default" = "󰲸";
"ncspot" = "󰓇";
"emms" = "";
};
"status-icons" = {

View file

@ -1,19 +1,14 @@
{ config, lib, pkgs, ... }:
{
programs = {
mpv = {
enable = true;
scripts = with pkgs.mpvScripts; [
mpris
autoload
thumbfast
thumbnail
sponsorblock
quality-menu
webtorrent-mpv-hook
];
};
ncspot.enable = true;
{ pkgs, ... }: {
programs.mpv = {
enable = true;
scripts = with pkgs.mpvScripts; [
mpris
autoload
thumbfast
thumbnail
sponsorblock
quality-menu
webtorrent-mpv-hook
];
};
}