nix-config/home/misc_pkgs/spicetify.nix

18 lines
372 B
Nix

{ inputs, pkgs, config, spicetify-nix, ... }:
{
programs.spicetify =
let
spicePkgs = spicetify-nix.legacyPackages.${pkgs.system};
in
{
enable = true;
enabledExtensions = with spicePkgs.extensions; [
shuffle
trashbin
featureShuffle
history
oneko
];
theme = spicePkgs.themes.text;
};
}