14 lines
244 B
Nix
14 lines
244 B
Nix
|
{ pkgs, ... }:
|
||
|
{
|
||
|
home.packages = with pkgs; [
|
||
|
spotify-player
|
||
|
];
|
||
|
|
||
|
home.file.".config/spotify-player" = {
|
||
|
source = ./player-configs;
|
||
|
# copy the scripts directory recursively
|
||
|
recursive = true;
|
||
|
};
|
||
|
|
||
|
}
|