summaryrefslogtreecommitdiff
path: root/apps/spicetify.nix
blob: d215468434078109947980b558f243db6942d0fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ pkgs, lib, spicetify-nix, ... }: 

{
  imports = [ spicetify-nix.homeManagerModule ];
  programs.spicetify = let
    spicePkgs = spicetify-nix.legacyPackages.${pkgs.system}; 
  in {
    # configure spicetify :)
    enable = true; # this is the line that will cause spotify to get installed
    theme = spicePkgs.themes.catppuccin-mocha;
    colorScheme = "mauve";
  #    enabledExtensions = with spicePkgs.extensions; [
  #      # "playlistIcons.js" # only needed if not using dribbblish
  #      "fullAlbumDate.js"
  #      "showQueueDuration.js"
  #      "playNext.js"
  #      "shuffle+.js"
  #    ];
  }
}