2023-01-23 22:18:27 +07:00
|
|
|
{ config, inputs, pkgs, ... }:
|
|
|
|
|
let
|
2025-03-17 01:33:41 +11:00
|
|
|
spicePkgs = inputs.spicetify-nix.legacyPackages.${pkgs.system};
|
2023-01-23 22:18:27 +07:00
|
|
|
in
|
|
|
|
|
{
|
2025-03-17 01:33:41 +11:00
|
|
|
imports = [ inputs.spicetify-nix.homeManagerModules.spicetify ];
|
2023-01-23 22:18:27 +07:00
|
|
|
|
|
|
|
|
programs.spicetify = {
|
|
|
|
|
enable = true;
|
2025-03-17 13:13:05 +11:00
|
|
|
alwaysEnableDevTools = true;
|
2025-03-17 13:35:53 +11:00
|
|
|
theme = spicePkgs.themes.catppuccin;
|
|
|
|
|
colorScheme = config.catppuccin.flavor;
|
2023-01-23 22:18:27 +07:00
|
|
|
|
2025-03-17 14:02:06 +11:00
|
|
|
enabledSnippets = with spicePkgs.snippets; [
|
|
|
|
|
removeGradient
|
|
|
|
|
];
|
2023-04-06 20:10:41 +07:00
|
|
|
enabledCustomApps = with spicePkgs.apps; [
|
2025-03-17 01:33:41 +11:00
|
|
|
lyricsPlus
|
2023-04-06 20:10:41 +07:00
|
|
|
];
|
2023-01-23 22:18:27 +07:00
|
|
|
enabledExtensions = with spicePkgs.extensions; [
|
2025-03-17 01:33:41 +11:00
|
|
|
fullAppDisplay
|
|
|
|
|
shuffle
|
2023-01-23 22:18:27 +07:00
|
|
|
hidePodcasts
|
2023-04-06 20:10:41 +07:00
|
|
|
|
|
|
|
|
skipStats
|
|
|
|
|
songStats
|
|
|
|
|
history
|
|
|
|
|
volumePercentage
|
2023-01-23 22:18:27 +07:00
|
|
|
];
|
|
|
|
|
};
|
|
|
|
|
}
|