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 = [
inputs.spicetify-nix.homeManagerModules.spicetify
];
programs.spicetify = {
enable = true;
# spotifyPackage = pkgs.spotify;
# spotifywmPackage = pkgs.spotifywm;
spotifyLaunchFlags = "--enable-features=UseOzonePlatform --ozone-platform=wayland";
windowManagerPatch = true;
enabledCustomApps = with spicePkgs.apps; [
marketplace
];
};
}