16 lines
298 B
Nix
16 lines
298 B
Nix
|
{ pkgs, inputs } :
|
||
|
{
|
||
|
imports = [
|
||
|
inputs.spicetify-nix.homeManagerModules.default
|
||
|
];
|
||
|
|
||
|
programs.spicetify =
|
||
|
let
|
||
|
spicePkgs = inputs.spicetify-nix.legacyPackages.${pkgs.system};
|
||
|
in
|
||
|
{
|
||
|
enable = true;
|
||
|
theme = spicePkgs.themes.catppuccin;
|
||
|
}
|
||
|
}
|