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