NixOS-95/Modules/Applications/GUI-Apps/Desktop-Apps/spotify.nix
2025-07-24 15:19:29 +02:00

16 lines
234 B
Nix

{
config,
lib,
pkgs,
...
}:
with lib; {
options.spotify.enable = mkEnableOption "Enable Spotify installation";
config = mkIf config.spotify.enable {
home.packages = with pkgs; [
spotify
cava
];
};
}