fix(apps): make playerctl conditional to ryu device only

This commit is contained in:
2026-02-19 14:02:39 +05:30
parent 7ef1785a0f
commit 684f6fdea5

View File

@@ -12,7 +12,8 @@
autoStart = true; autoStart = true;
}; };
}; };
home.packages = with pkgs; [ home.packages = with pkgs;
lib.optionals (device.is "ryu") [
# pulseaudio # pulseaudio
playerctl playerctl
]; ];