blob: 4177b4723fec915ad985b497accbcd301903ecf8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
{ pkgs, lib, inputs, ... }:
{
imports = [ inputs.spicetify-nix.homeManagerModules.default ];
programs.spicetify =
let
spicePkgs = inputs.spicetify-nix.legacyPackages.${pkgs.system};
in
{
enable = true;
enabledExtensions = with spicePkgs.extensions; [
adblock
hidePodcasts
# shuffle # shuffle+ (special characters are sanitized out of extension names)
];
theme = spicePkgs.themes.starryNight;
# colorScheme = "";
};
}
|