nixos/modules/home-manager/spotify-player.nix
2025-03-09 14:37:27 -04:00

12 lines
104 B
Nix

{
pkgs,
config,
...
}: {
programs = {
spotify-player = {
enable = true;
};
};
}