summaryrefslogtreecommitdiff
path: root/home/programs/spicetify.nix
blob: a581bd64d48eb701d0a8c1fdf237130e78e88d5a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ config, pkgs, inputs, ... }:

let
  spicePkgs = inputs.spicetify-nix.legacyPackages.${pkgs.stdenv.hostPlatform.system};
in {
  imports = [
    inputs.spicetify-nix.homeManagerModules.spicetify
  ];

  programs.spicetify = {
    enable = true;

    enabledExtensions = with spicePkgs.extensions; [
      adblockify
      hidePodcasts
    ];

#    theme = spicePkgs.themes.onepunch;
    theme = spicePkgs.themes.catppuccin;
    colorScheme = "mocha";
  };
}