blob: 6f695e6166d37dd1dbfb54ebe22b8121c786db44 (
plain)
| 1
2
3
4
5
6
7
8
9
10
 | { pkgs, config, ... }:
{
  home.packages = with pkgs; [
    spotify-player
  ];
  home.file.".config/spotify-player/theme.toml".source = ./theme.toml;
  home.file.".config/spotify-player/app.toml".source = ./app.toml;
}
 |