mirror of
https://github.com/Username404-59/Dotfiles-NixOS.git
synced 2026-07-03 21:08:08 +02:00
25 lines
600 B
Nix
25 lines
600 B
Nix
{ nixtamal, ... }:
|
|
|
|
let
|
|
spicetify-nix = import nixtamal.nix-spicetify { pkgs = import nixtamal.nixpkgs { }; };
|
|
in
|
|
{
|
|
imports = [ spicetify-nix.homeManagerModules.spicetify ];
|
|
|
|
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; [];
|
|
};
|
|
} |