diff options
Diffstat (limited to 'config/spotify-player/default.nix')
| -rw-r--r-- | config/spotify-player/default.nix | 11 | 
1 files changed, 11 insertions, 0 deletions
| diff --git a/config/spotify-player/default.nix b/config/spotify-player/default.nix new file mode 100644 index 0000000..180baad --- /dev/null +++ b/config/spotify-player/default.nix @@ -0,0 +1,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; +} | 
