blob: 21818275a2acf096513a642f707066f6247cdc54 (
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; [
];
};
}
|