Skip to content

Commit

Permalink
refactor(spotify): simplify let binding
Browse files Browse the repository at this point in the history
  • Loading branch information
gekoke committed Mar 10, 2025
1 parent 1ccc996 commit 09e0cd1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions modules/nixos/programs/spotify/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ in
enable = true;
enabledExtensions =
let
spicePkgs = inputs.spicetify-nix.legacyPackages.${system}.extensions;
inherit (inputs.spicetify-nix.legacyPackages.${system}) extensions;
in
[
spicePkgs.extensions.betterGenres
spicePkgs.extensions.keyboardShortcut
extensions.betterGenres
extensions.keyboardShortcut
];
};
};
Expand Down

0 comments on commit 09e0cd1

Please sign in to comment.