From 3a3e949e64d942ac7237cd52781a8cb6dc57d3c9 Mon Sep 17 00:00:00 2001 From: ooks-io Date: Sun, 19 Jan 2025 00:29:26 +1100 Subject: [PATCH] music: disable sixel for spotify --- modules/home/workstation/media/music.nix | 2 ++ outputs/pkgs/default.nix | 5 ++++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/modules/home/workstation/media/music.nix b/modules/home/workstation/media/music.nix index 4b52721..b5a967f 100644 --- a/modules/home/workstation/media/music.nix +++ b/modules/home/workstation/media/music.nix @@ -4,6 +4,7 @@ config, lib, hozen, + self', ... }: let inherit (lib) mkIf getExe elem; @@ -36,6 +37,7 @@ in { programs = { spotify-player = { enable = true; + package = self'.packages.spotify-player; settings = { theme = "default"; client_id_command = "cat ${spotify_key.path}"; diff --git a/outputs/pkgs/default.nix b/outputs/pkgs/default.nix index 3a5d2cc..f33f137 100644 --- a/outputs/pkgs/default.nix +++ b/outputs/pkgs/default.nix @@ -26,7 +26,10 @@ inherit (projectPlus) fpp-config fpp-launcher fpp-sd; project-plus = projectPlus.package; - spotify-player = pkgs.spotify-player.override {withImage = false;}; + spotify-player = pkgs.spotify-player.override { + withImage = false; + withSixel = false; + }; }; }; }