diff --git a/profiles/desktop/spotify.nix b/profiles/desktop/spotify.nix new file mode 100644 index 0000000..fe6ef29 --- /dev/null +++ b/profiles/desktop/spotify.nix @@ -0,0 +1,16 @@ +{ + config, + lib, + pkgs, + ... +}: +let + cfg = config.profiles.desktop; +in +{ + config = lib.mkIf cfg.enable { + environment.systemPackages = [ + pkgs.spotify + ]; + }; +}