17 lines
267 B
Nix
17 lines
267 B
Nix
{
|
|
dotsPath,
|
|
pkgs,
|
|
...
|
|
}:
|
|
|
|
{
|
|
home.packages = with pkgs; [
|
|
ncspot
|
|
# (if config.lib ? nixGL then config.lib.nixGL.wrap spotify else spotify)
|
|
];
|
|
|
|
home.file = {
|
|
".config/ncspot/config.toml".source = dotsPath + "/.config/ncspot/config.toml";
|
|
};
|
|
}
|