mirror of
https://github.com/Username404-59/Dotfiles-NixOS.git
synced 2026-07-03 12:58:07 +02:00
12 lines
343 B
Nix
12 lines
343 B
Nix
{ spicetify-nix, ... }:
|
|
|
|
{
|
|
programs.spicetify = {
|
|
enable = true;
|
|
|
|
theme = spicetify-nix.packages.themes.catppuccin; # TODO: Use https://github.com/0lswitcher/spotneotify
|
|
colorScheme = "mocha";
|
|
enabledExtensions = with spicetify-nix.packages.extensions; [];
|
|
enabledCustomApps = with spicetify-nix.packages.apps; [];
|
|
};
|
|
} |