{ pkgs, lib, inputs, ... }: let unstable = import {config = {allowUnfree = true;};}; spicetify-nix = inputs.spicetify-nix; spicePkgs = spicetify-nix.packages.${pkgs.system}.default; in { imports = [ inputs.spicetify-nix.nixosModules.default ]; programs.spicetify = let spicePkgs = inputs.spicetify-nix.legacyPackages.${pkgs.system}; in { enable = true; enabledExtensions = with spicePkgs.extensions; [ adblock beautifulLyrics ]; theme = spicePkgs.themes.catppuccin; colorScheme = "mocha"; enabledCustomApps = with spicePkgs.apps; [ lyricsPlus ]; }; }