nichts/modules/programs/gui/spicetify.nix

22 lines
402 B
Nix
Raw Normal View History

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