feat(spotifyd): Enable spotifyd module to play music in background

This commit is contained in:
ulic-youthlic 2025-07-13 06:04:55 +08:00
parent d9aecce780
commit 3fba87b4b1
Signed by: youthlic
GPG key ID: 63E86C3C14A0D721
8 changed files with 101 additions and 0 deletions

View file

@ -14,6 +14,7 @@ in
./helix.nix
./cliphist.nix
./zulip.nix
./spotifyd.nix
# Nur
./nur.nix

View file

@ -0,0 +1,8 @@
{ outputs, ... }:
_final: prev:
let
inherit (prev.stdenv.hostPlatform) system;
in
{
spotifyd = outputs.packages."${system}".spotifyd;
}