chore(clean): no more spotify

This commit is contained in:
Zhongheng Liu 2025-01-08 14:30:41 +02:00
commit 395bb04422
Signed by: steven
GPG key ID: 805A28B071DAD84B
2 changed files with 0 additions and 30 deletions

View file

@ -13,7 +13,6 @@
./ags
./xdg.nix
./stylix.nix
./spicetify.nix
./scripts
./programs
./packages

View file

@ -1,29 +0,0 @@
{ pkgs
, lib
, inputs
, ...
}:
let
spicePkgs = inputs.spicetify-nix.legacyPackages.${pkgs.system};
in
{
# allow spotify to be installed if you don't have unfree enabled already
nixpkgs.config.allowUnfreePredicate = pkg:
builtins.elem (lib.getName pkg) [
"spotify"
];
programs.spicetify = {
enable = true;
#theme = spicePkgs.themes.onepunch;
#colorScheme = "Dark";
enabledCustomApps = with spicePkgs.apps; [
lyricsPlus
];
enabledExtensions = with spicePkgs.extensions; [
adblock
fullAppDisplay
shuffle # shuffle+ (special characters are sanitized out of ext names)
hidePodcasts
];
};
}