{pkgs, ...}: { # Install rmpc from unstable nix home.packages = with pkgs.unstable; [ rmpc ] # Add cava and libnotify as a stable package for config dependencies ++ (with pkgs; [ cava libnotify mpc ]); # Write the rmpc config xdg.configFile."rmpc/config.ron".source = ./rmpc/config.ron; }