Skip to content

Commit

Permalink
home/gui/spotify: fix external links
Browse files Browse the repository at this point in the history
  • Loading branch information
Sciencentistguy committed Apr 9, 2023
1 parent 5730e5b commit a62fdc6
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion home/gui/spotify.nix
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
{pkgs, ...}: {
home.packages = with pkgs; [spotify];
home.packages = let
# This is needed to fix external links being broken in spotify.
# See: https://github.com/NixOS/nixpkgs/issues/47885
spotify = pkgs.spotify.override {
nss = pkgs.nss_latest;
};
in [spotify];
}

0 comments on commit a62fdc6

Please sign in to comment.