Files
parana/modules/misc/spotify.nix
2026-07-10 20:07:29 -04:00

12 lines
203 B
Nix

{ pkgs, ... }:
{
home.packages = [
pkgs.spotify
];
# Prevent Spotify from launching on startup by removing its autostart entry
# xdg.configFile."autostart/spotify.desktop".force = false;
}