flakes/modules/user/spicetify.nix

29 lines
599 B
Nix
Raw Normal View History

2023-01-23 22:18:27 +07:00
{ config, inputs, pkgs, ... }:
let
spicePkgs = inputs.spicetify-nix.legacyPackages.${pkgs.system};
2023-01-23 22:18:27 +07:00
in
{
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;
theme = spicePkgs.themes.catppuccin;
colorScheme = config.catppuccin.flavor;
2023-01-23 22:18:27 +07:00
2023-04-06 20:10:41 +07:00
enabledCustomApps = with spicePkgs.apps; [
lyricsPlus
2023-04-06 20:10:41 +07:00
];
2023-01-23 22:18:27 +07:00
enabledExtensions = with spicePkgs.extensions; [
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
];
};
}