2024-08-23 23:14:53 -07:00
|
|
|
{
|
|
|
|
inputs,
|
|
|
|
pkgs,
|
|
|
|
...
|
2024-09-02 18:16:22 -07:00
|
|
|
}:
|
|
|
|
let
|
2024-08-23 23:14:53 -07:00
|
|
|
spicepkgs = inputs.spicetify.legacyPackages.${pkgs.system};
|
2024-09-02 18:16:22 -07:00
|
|
|
in
|
|
|
|
{
|
2024-08-23 23:14:53 -07:00
|
|
|
imports = [
|
|
|
|
inputs.spicetify.homeManagerModules.default
|
|
|
|
];
|
|
|
|
|
|
|
|
programs.spicetify = {
|
|
|
|
enable = true;
|
2024-10-30 21:38:05 -07:00
|
|
|
# theme = spicepkgs.themes.dribbblish;
|
|
|
|
# colorScheme = "rosepine";
|
2024-08-23 23:14:53 -07:00
|
|
|
enabledExtensions = with spicepkgs.extensions; [
|
|
|
|
lastfm
|
2024-08-24 01:42:43 -07:00
|
|
|
fullAppDisplayMod
|
|
|
|
];
|
|
|
|
enabledCustomApps = with spicepkgs.apps; [
|
|
|
|
lyricsPlus
|
2024-08-23 23:14:53 -07:00
|
|
|
];
|
|
|
|
};
|
|
|
|
}
|