Dotfiles-NixOS/home/doggo/spicetify-config.nix

20 lines
458 B
Nix

{ spicetify-nix, nixtamal, ... }:
{
programs.spicetify = {
enable = true;
theme = {
name = "spotneotify";
src = nixtamal.spotneotify;
injectCss = true;
replaceColors = true;
injectThemeJs = false;
overwriteAssets = false;
};
colorScheme = "CatppuccinMocha";
enabledExtensions = with spicetify-nix.packages.extensions; [];
enabledCustomApps = with spicetify-nix.packages.apps; [];
};
}