added spicetify
This commit is contained in:
@ -30,6 +30,7 @@
|
||||
./thunderbird.nix
|
||||
./vscode.nix
|
||||
./mpv.nix
|
||||
./spiceify.nix
|
||||
];
|
||||
|
||||
# Programs
|
||||
|
@ -89,7 +89,6 @@
|
||||
mullvad-vpn
|
||||
|
||||
# Entertainment
|
||||
spotify
|
||||
hypnotix
|
||||
|
||||
# VPN client for university
|
||||
|
26
systems/common/spiceify.nix
Normal file
26
systems/common/spiceify.nix
Normal 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
|
||||
];
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user