feat: set up 'music' module

This commit is contained in:
2026-02-06 11:11:19 +01:00
parent dc630fe984
commit dcb525cce2
6 changed files with 20 additions and 4 deletions

View File

@@ -0,0 +1,16 @@
{
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";
};
}