spotify: add spicetify-nix
This commit is contained in:
parent
378828b856
commit
1f8eab22b4
4 changed files with 62 additions and 1 deletions
33
modules/programs/gui/spotify.mod.nix
Normal file
33
modules/programs/gui/spotify.mod.nix
Normal file
|
@ -0,0 +1,33 @@
|
|||
{
|
||||
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
|
||||
]);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue