nichts/modules/programs/gui/spicetify.nix

23 lines
392 B
Nix
Raw Normal View History

2024-10-05 01:12:46 +02:00
{
inputs,
inputs',
pkgs,
...
}: let
spicePkgs = inputs'.spicetify-nix.legacyPackages;
in {
imports = [
inputs.spicetify-nix.nixosModules.default
];
programs.spicetify = {
enable = true;
enabledExtensions = with spicePkgs.extensions; [
adblock
hidePodcasts
shuffle
];
theme = spicePkgs.themes.catppuccin;
colorScheme = "mocha";
};
}