aboutsummaryrefslogtreecommitdiff
path: root/modules/home/media/spicetify
diff options
context:
space:
mode:
Diffstat (limited to 'modules/home/media/spicetify')
-rw-r--r--modules/home/media/spicetify/default.nix39
1 files changed, 39 insertions, 0 deletions
diff --git a/modules/home/media/spicetify/default.nix b/modules/home/media/spicetify/default.nix
new file mode 100644
index 0000000..06c619b
--- /dev/null
+++ b/modules/home/media/spicetify/default.nix
@@ -0,0 +1,39 @@
+{
+ config,
+ lib,
+ pkgs,
+ inputs,
+ ...
+}:
+
+let
+ spicePkgs = inputs.spicetify-nix.legacyPackages.${pkgs.stdenv.system};
+ cfg = config.nx.media.spicetify;
+ inherit (lib) mkEnableOption mkIf;
+in
+{
+ options.nx.media.spicetify = {
+ enable = mkEnableOption "Command-line tool to customize the official Spotify client";
+ };
+
+ config = mkIf cfg.enable {
+ nixpkgs.config.allowUnfree = true;
+ programs.spicetify = {
+ enable = true;
+ enabledSnippets = with spicePkgs.snippets; [
+ pointer
+ sonicDancing
+ modernScrollbar
+ nyanCatProgressBar
+ declutterNowPlayingBar
+ ];
+
+ enabledExtensions = with spicePkgs.extensions; [
+ keyboardShortcut
+ ];
+
+ theme = spicePkgs.themes.sleek;
+ colorScheme = "Coral";
+ };
+ };
+}