nix-config/home/programs/media/spotify/spotify-player.nix

14 lines
244 B
Nix
Raw Normal View History

2025-04-16 21:54:10 +02:00
{ pkgs, ... }:
{
home.packages = with pkgs; [
spotify-player
];
home.file.".config/spotify-player" = {
source = ./player-configs;
# copy the scripts directory recursively
recursive = true;
};
}