32 lines
762 B
Nix
32 lines
762 B
Nix
{ pkgs, config, lib, inputs, ... }:
|
|
let
|
|
spicePkgs = inputs.spicetify-nix.legacyPackages.${pkgs.system};
|
|
accent = "#${config.lib.stylix.colors.base0D}";
|
|
in {
|
|
|
|
imports = [ inputs.spicetify-nix.homeManagerModules.default ];
|
|
nixpkgs.config.allowUnfreePredicate = pkg:
|
|
builtins.elem (lib.getName pkg) [ "spotify" ];
|
|
programs.spicetify = {
|
|
enable = true;
|
|
theme = lib.mkForce spicePkgs.themes.text;
|
|
|
|
# TODO: Colors not working
|
|
customColorScheme = lib.mkForce {
|
|
button = accent;
|
|
button-active = accent;
|
|
tab-active = accent;
|
|
};
|
|
|
|
enabledExtensions = with spicePkgs.extensions; [
|
|
playlistIcons
|
|
lastfm
|
|
historyShortcut
|
|
hidePodcasts
|
|
adblock
|
|
fullAppDisplay
|
|
shuffle
|
|
];
|
|
};
|
|
}
|