refactor: override spotify-player to not not include album art

This commit is contained in:
ooks-io 2024-02-13 22:19:59 +13:00
parent a044b1b5fd
commit 95a93fabff

View file

@ -1,9 +1,13 @@
{ pkgs, config, lib, inputs, ... }: { pkgs, config, lib, ... }:
let let
inherit (config.colorscheme) colors; inherit (config.colorscheme) colors;
cfg = config.homeModules.desktop.media.music.tui; cfg = config.homeModules.desktop.media.music.tui;
zellij = config.homeModules.console.multiplexer.zellij; zellij = config.homeModules.console.multiplexer.zellij;
spotify-cli = pkgs.spotify-player.override {
withImage = false;
withSixel = false;
};
in in
{ {
@ -12,7 +16,7 @@ in
config = lib.mkIf cfg.enable { config = lib.mkIf cfg.enable {
home.packages = with pkgs; [ home.packages = with pkgs; [
termusic termusic
spotify-player spotify-cli
alsa-utils alsa-utils
mpv mpv
]; ];