19 lines
409 B
Nix
19 lines
409 B
Nix
{ inputs, pkgs, ... }:
|
|
let
|
|
spicePkgs = inputs.spicetify-nix.legacyPackages.${pkgs.stdenv.hostPlatform.system};
|
|
in
|
|
{
|
|
imports = [ inputs.spicetify-nix.homeManagerModules.default ];
|
|
|
|
programs.spicetify = {
|
|
enable = true;
|
|
enabledExtensions = with spicePkgs.extensions; [
|
|
adblock
|
|
hidePodcasts
|
|
shuffle
|
|
];
|
|
theme = spicePkgs.themes.comfy;
|
|
colorScheme = "rose-pine";
|
|
};
|
|
}
|