aboutsummaryrefslogtreecommitdiff
path: root/home/mun/programs/rmpc.nix
blob: da9d38513a032d10146004c3104d4fe31ddd6311 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{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
    ]);
  # Write the rmpc config
  xdg.configFile."rmpc/config.ron".source = ./rmpc/config.ron;
}