20 lines
370 B
Nix
20 lines
370 B
Nix
{ pkgs, spicetify-nix, ... }:
|
|
|
|
let
|
|
spicePkgs = spicetify-nix.legacyPackages.${pkgs.system};
|
|
in
|
|
{
|
|
imports = [ spicetify-nix.homeManagerModules.default ];
|
|
|
|
programs.spicetify = {
|
|
enable = true;
|
|
theme = spicePkgs.themes.catppuccin;
|
|
colorScheme = "frappe";
|
|
|
|
enabledExtensions = with spicePkgs.extensions; [
|
|
autoVolume
|
|
shuffle
|
|
];
|
|
};
|
|
}
|