fix(apps): make playerctl conditional to ryu device only
All checks were successful
Flake checker / Build Nix targets (push) Successful in 9m27s

This commit is contained in:
2026-02-19 14:02:39 +05:30
parent 998ebc1164
commit 9d1ca43913

View File

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