Files
nixos-config/mods/mini-spice.nix
2025-01-25 00:09:42 -05:00

19 lines
423 B
Nix

{ pkgs, inputs, ... }:
{
programs.spicetify =
let
spicePkgs = inputs.spicetify-nix.legacyPackages.${pkgs.system};
in
{
enable = true;
enabledExtensions = with spicePkgs.extensions; [
adblock
hidePodcasts
shuffle # shuffle+ (special characters are sanitized out of extension names)
];
theme = spicePkgs.themes.catppuccin;
colorScheme = "mocha";
};
}