feat: add marketplace to spicetify

This commit is contained in:
Mohammad Rafiq 2025-03-15 12:51:21 +08:00
parent 254613dfa3
commit 03e48ab310

View file

@ -1,10 +1,19 @@
{inputs, ...}: { {
inputs,
pkgs,
...
}: let
spicePkgs = inputs.spicetify-nix.legacyPackages.${pkgs.stdenv.system};
in {
imports = [ imports = [
inputs.spicetify-nix.homeManagerModules.spicetify inputs.spicetify-nix.homeManagerModules.spicetify
]; ];
programs.spicetify = { programs.spicetify = {
enable = true; enable = true;
# spotifyPackage = pkgs.spotify; spotifyLaunchFlags = "--enable-features=UseOzonePlatform --ozone-platform=wayland";
# spotifywmPackage = pkgs.spotifywm; windowManagerPatch = true;
enabledCustomApps = with spicePkgs.apps; [
marketplace
];
}; };
} }