Files
dotfiles/home/apps/vicinae.nix
servius 9d1ca43913
All checks were successful
Flake checker / Build Nix targets (push) Successful in 9m27s
fix(apps): make playerctl conditional to ryu device only
2026-02-19 14:02:39 +05:30

21 lines
335 B
Nix

{
pkgs,
inputs,
device,
...
}: {
imports = [inputs.vicinae.homeManagerModules.default];
services.vicinae = {
enable = device.is "ryu";
systemd = {
enable = true;
autoStart = true;
};
};
home.packages = with pkgs;
lib.optionals (device.is "ryu") [
# pulseaudio
playerctl
];
}