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