summaryrefslogtreecommitdiff
path: root/unmoved-modules/home-manager/spicetify.nix
blob: 4b54e6aa2a2d8d2172e3d142c63476670ffe5cd7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ pkgs, inputs, ... }:

{
  imports = [
    inputs.spicetify.homeManagerModules.default
  ];

  programs.spicetify =
  let 
    spicepkgs = inputs.spicetify.legacyPackages.${pkgs.system};
  in
  {
    enable = true;
    # theme = spicepkgs.themes.sleek;
    # colorScheme = "Deep";

    enabledExtensions = with spicepkgs.extensions; [
      shuffle
    ];
    enabledCustomApps = with spicepkgs.apps; [

    ];
    enabledSnippets = with spicepkgs.snippets; [

    ];
  };
}