refactor: override spotify-player to not not include album art
This commit is contained in:
parent
a044b1b5fd
commit
95a93fabff
1 changed files with 6 additions and 2 deletions
|
|
@ -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
|
||||||
];
|
];
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue