nyx/modules/home-manager/spotify/default.nix

20 lines
394 B
Nix
Raw Normal View History

2024-08-30 22:10:17 +00:00
{ pkgs, lib, config, ... }: {
imports = [
inputs.spicetify-nix.homeManagerModules.default
];
programs.spicetify =
let
spicePkgs = inputs.spicetify-nix.legacyPackages.${pkgs.system};
in
{
enable = true;
enabledExtensions = with spicePkgs.extensions; [
hidePodcasts
];
theme = spicePkgs.themes.comfy;
colorScheme = "Hikari";
}
}