added spicetify

This commit is contained in:
2024-02-13 20:56:08 +01:00
parent a7b7f92d94
commit 4f1f1dfa77
5 changed files with 97 additions and 5 deletions

View File

@ -30,6 +30,7 @@
./thunderbird.nix
./vscode.nix
./mpv.nix
./spiceify.nix
];
# Programs

View File

@ -89,7 +89,6 @@
mullvad-vpn
# Entertainment
spotify
hypnotix
# VPN client for university

View File

@ -0,0 +1,26 @@
{
pkgs,
spicetify,
...
}: let
spicePkgs = spicetify.packages.${pkgs.system}.default;
in {
programs.spicetify = {
enable = true;
theme = spicePkgs.themes.catppuccin;
colorScheme = "frappe";
enabledExtensions = with spicePkgs.extensions; [
fullAppDisplay
shuffle # shuffle+ (special characters are sanitized out of ext names)
hidePodcasts
groupSession
playlistIntersection
skipStats
phraseToPlaylist
wikify
songStats
];
};
}