aboutsummaryrefslogtreecommitdiff
path: root/modules/programs/spotify.nix
blob: 4fe5642f447b8de0aaf8b7069575ef1e1c4dbeab (plain)
1
2
3
4
5
6
7
8
9
{
  flake.modules.homeManager.spotify =
    { pkgs, ... }:
    {
      home.packages = with pkgs; [
        spotify
      ];
    };
}