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