Gerg-L / spicetify-nix

A nix flake for configuring spicetify. Includes packaging for many popular themes and extensions.
GNU General Public License v3.0
141 stars 12 forks source link

Cannot install custom apps - "Something went wrong" #217

Closed GaviTSRA closed 2 months ago

GaviTSRA commented 2 months ago

Hi! I cannot get it to correctly install spicetify. Every time i add custom apps like lyricsPlus, it goes to this: image I have also tried enabling only the adblock extension, which doesn't break spotify but also doesn't block ads.

I am new to NixOS so this might just be a skill issue. This is part of what i have:

programs.spicetify =
    let
     spicePkgs = spicetify-nix.legacyPackages.${pkgs.system};
    in
    {
      enable = true;
      enabledExtensions = with spicePkgs.extensions; [
        adblock
      ];
      enabledCustomApps = with spicePkgs.apps; [
          marketplace
          lyricsPlus
        ];
      theme = spicePkgs.themes.catppuccin;
    };

Please let me know if you need to see anything else of my configuration.

Gerg-L commented 2 months ago

what you're doing should work, can you share your whole config?

Gerg-L commented 2 months ago

closing as stale, feel free to reopen if you still have this issue