33 lines
678 B
Nix
33 lines
678 B
Nix
{
|
|
inputs,
|
|
pkgs,
|
|
...
|
|
}: let
|
|
spicePkgs = inputs.spicetify-nix.legacyPackages.${pkgs.stdenv.system};
|
|
spicetify = inputs.spicetify-nix.lib.mkSpicetify pkgs {
|
|
enable = true;
|
|
theme = spicePkgs.themes.catppuccin;
|
|
colorScheme = "mocha";
|
|
# enabledCustomApps = with spicePkgs.apps; [
|
|
# newReleases
|
|
# lyricsPlus
|
|
# ncsVisualizer
|
|
# ];
|
|
enabledExtensions = with spicePkgs.extensions; [
|
|
shuffle
|
|
hidePodcasts
|
|
keyboardShortcut
|
|
groupSession
|
|
keyboardShortcut
|
|
betterGenres
|
|
autoVolume
|
|
lastfm
|
|
];
|
|
};
|
|
in {
|
|
environment.systemPackages =
|
|
[spicetify]
|
|
++ (with pkgs; [
|
|
sptlrx
|
|
]);
|
|
}
|