mirror of
https://github.com/Username404-59/Dotfiles-NixOS.git
synced 2026-07-03 21:08:08 +02:00
20 lines
458 B
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; [];
|
|
};
|
|
} |