This repository has been archived by the owner on May 4, 2024. It is now read-only.
forked from the-argus/spicetify-nix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodule.nix
221 lines (202 loc) · 6.94 KB
/
module.nix
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
{
isNixOSModule ? false,
}:
{
lib,
pkgs,
config,
...
}:
with lib;
let
inherit (pkgs) callPackage;
cfg = config.programs.spicetify;
spiceLib = callPackage ./lib { };
spiceTypes = spiceLib.types;
spicePkgs = callPackage ./pkgs { };
optList = lib.lists.optionals;
in
{
options.programs.spicetify = {
enable = mkEnableOption "A modded Spotify";
dontInstall = mkEnableOption "Put spiced spotify in config.programs.spicetify.spicedSpotify, but do not install it in home.packages.";
windowManagerPatch = mkEnableOption "Linker preload spotifywm patch.";
spicedSpotify = mkOption {
type = types.nullOr types.package;
default = null;
description = "An internal option which is NOT meant to be set by the user. It stores the final derivation produced by this module.";
};
createdPackages = mkOption {
type = types.nullOr (types.listOf types.package);
default = null;
description = "An internal option which is NOT meant to be set by the user. It stores all of the packages which will be installed if dontInstall is false.";
};
theme = mkOption {
type = types.oneOf [
types.str
spiceTypes.theme
];
default = spicePkgs.themes.Default;
};
spotifyPackage = mkOption {
type = types.package;
default = pkgs.spotify;
description = "The nix package containing Spotify Desktop.";
};
spicetifyPackage = mkOption {
type = types.package;
default = pkgs.spicetify-cli;
description = "The nix package containing spicetify-cli.";
};
extraCommands = mkOption {
type = types.lines;
default = "";
description = "Extra commands to be run during the setup of spicetify.";
};
enabledExtensions = mkOption {
type = types.listOf (
types.oneOf [
spiceTypes.extension
types.str
]
);
default = [ ];
description = "A list of extensions. Official extensions such \
as \"dribbblish.js\" can be referenced by string alone.";
example = ''
[
"dribbblish.js"
"shuffle+.js"
{
src = pkgs.fetchgit {
url = "https://github.com/LucasBares/spicetify-last-fm";
rev = "0f905b49362ea810b6247ac1950a2951dd35632e";
sha256 = "1b0l2g5cyjj1nclw1ff7as9q94606mkq1k8l2s34zzdsx3m2zv81";
};
filename = "lastfm.js";
}
]
'';
};
enabledCustomApps = mkOption {
type = types.listOf (
types.oneOf [
spiceTypes.app
types.str
]
);
default = [ ];
};
xpui = mkOption {
type = spiceTypes.xpui;
default = spiceTypes.defaultXpui;
};
# legacy/ease of use options (commonly set for themes like Dribbblish)
# injectCss = xpui.Setting.inject_css;
injectCss = mkOption {
type = lib.types.nullOr lib.types.bool;
default = null;
};
replaceColors = mkOption {
type = lib.types.nullOr lib.types.bool;
default = if (cfg.customColorScheme != null) then true else null;
};
overwriteAssets = mkOption {
type = lib.types.nullOr lib.types.bool;
default = null;
};
sidebarConfig = mkOption {
type = lib.types.nullOr lib.types.bool;
default = null;
};
colorScheme = mkOption {
type = lib.types.nullOr lib.types.str;
default = if cfg.customColorScheme != null then "custom" else null;
};
customColorScheme = mkOption {
type = lib.types.nullOr lib.types.attrs;
default = null;
};
cssMap = mkOption {
type = lib.types.path;
default = "${cfg.spicetifyPackage.src}/css-map.json";
};
};
config =
let
xpui = lib.attrsets.recursiveUpdate cfg.xpui spiceLib.types.defaultXpui;
actualTheme = spiceLib.getTheme cfg.theme;
# take the list of extensions and turn strings into actual extensions
allExtensions = map spiceLib.getExtension (
cfg.enabledExtensions
++ (optList (builtins.hasAttr "requiredExtensions" actualTheme) actualTheme.requiredExtensions)
++ xpui.AdditionalOptions.extensions
);
# do the same thing again but for customapps this time
allApps = map spiceLib.getApp (cfg.enabledCustomApps ++ xpui.AdditionalOptions.custom_apps);
# custom spotify package with spicetify integrated in
spiced-spotify =
let
isSpotifyWM = cfg.spotifyPackage == pkgs.spotifywm;
spotifyToOverride =
if isSpotifyWM then
(lib.trivial.warn "SpotifyWM is a weird package. Please consider settings programs.spicetify.windowManagerPatch to true, instead." pkgs.spotify)
else
cfg.spotifyPackage;
overridenSpotify = spiceLib.spicetifyBuilder {
spotify = spotifyToOverride;
spicetify = cfg.spicetifyPackage;
extensions = allExtensions;
apps = allApps;
theme = actualTheme;
usingCustomColorScheme = cfg.customColorScheme != null;
inherit (cfg) customColorScheme;
# compose the configuration as well as options required by extensions and
# cfg.xpui into one set
config-xpui = spiceLib.xpuiBuilder {
extensions = allExtensions;
apps = allApps;
theme = actualTheme;
cfgXpui = xpui;
cfgColorScheme = cfg.colorScheme;
inherit cfg;
};
};
in
if isSpotifyWM then
cfg.spotifyPackage.override { spotify = overridenSpotify; }
else
overridenSpotify;
packagesToInstall =
[
(
# give warning if spotifywm is set redundantly
if cfg.spotifyPackage == pkgs.spotifywm && cfg.windowManagerPatch then
lib.trivial.warn "spotify package set to spotifywm and windowManagerPatch is set to true. It is recommended to only use windowManagerPatch."
# wrap spotify with the window manager patch if necessary
else if cfg.windowManagerPatch then
spicePkgs.spotifywm.override { spotify = spiced-spotify; }
else
spiced-spotify
)
]
++
# need montserrat for the BurntSienna theme
(optList (actualTheme == spicePkgs.official.themes.BurntSienna) [ pkgs.montserrat ])
++ (optList (actualTheme == spicePkgs.themes.Orchis) [ pkgs.fira ]);
homeConfiguration = {
home.packages = optList (!cfg.dontInstall) packagesToInstall;
};
nixosConfiguration = {
environment.systemPackages = optList (!cfg.dontInstall) packagesToInstall;
};
in
mkIf cfg.enable (
{
programs.spicetify.spicedSpotify = spiced-spotify;
programs.spicetify.createdPackages = packagesToInstall;
# install necessary packages for this user
}
// (if isNixOSModule then nixosConfiguration else homeConfiguration)
);
}