15 lines
230 B
Nix
15 lines
230 B
Nix
{ pkgs, inputs, ... }:
|
|
|
|
let
|
|
spicePkgs = inputs.spicetify-nix.legacyPackages.${pkgs.stdenv.system};
|
|
in
|
|
|
|
{
|
|
programs.spicetify = {
|
|
enable = true;
|
|
enabledCustomApps = with spicePkgs.apps; [
|
|
marketplace
|
|
];
|
|
};
|
|
}
|