blob: e331ad3d2a25aecb0a0e1b2472ef3dfd023fd9a8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
{ config, lib, pkgs, inputs, ... }:
let
cfg = config.spicetify;
spicePkgs = inputs.spicetify-nix.packages.${pkgs.system}.default;
in {
options.spicetify.enable = lib.mkEnableOption "Enable and configure Spicetify";
config = lib.mkIf cfg.enable {
programs.spicetify = {
enable = true;
enabledSnippets = with spicePkgs.snippets; [
pointer
sonicDancing
modernScrollbar
nyanCatProgressBar
declutterNowPlayingBar
];
theme = spicePkgs.themes.sleek;
colorScheme = "coral";
};
};
}
|