mirror of
https://github.com/Gerg-L/nixos.git
synced 2025-12-10 08:53:56 -05:00
34 lines
916 B
Nix
34 lines
916 B
Nix
{ pkgs, lib, spicetify-nix, ... }:
|
|
{
|
|
imports = [ spicetify-nix.homeManagerModule ];
|
|
programs.spicetify = {
|
|
spotifyPackage = pkgs.spotify-unwrapped;
|
|
spicetifyPackage = pkgs.spicetify-cli;
|
|
enable = true;
|
|
enabledExtensions = with spicetify-nix.pkgs.extensions; [
|
|
"adblock.js"
|
|
"hidePodcasts.js"
|
|
"shuffle+.js"
|
|
];
|
|
theme = spicetify-nix.pkgs.themes.Dribbblish;
|
|
colorScheme = "custom";
|
|
customColorScheme = {
|
|
text = "79dac8";
|
|
subtext = "f8f8f8";
|
|
sidebar-text = "79dac8";
|
|
main = "000000";
|
|
sidebar = "323437";
|
|
player = "000000";
|
|
card = "000000";
|
|
shadow = "000000";
|
|
selected-row = "7c8f8f";
|
|
button = "74b2ff";
|
|
button-active = "74b2ff";
|
|
button-disabled = "555169";
|
|
tab-active = "80a0ff";
|
|
notification = "80a0ff";
|
|
notification-error = "e2637f";
|
|
misc = "282a36";
|
|
};
|
|
};
|
|
}
|