mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 04:19:19 -08:00
31 lines
627 B
Nix
31 lines
627 B
Nix
{
|
|
pkgs,
|
|
inputs,
|
|
...
|
|
}: let
|
|
spicePkgs = inputs.spicetify-nix.legacyPackages.${pkgs.stdenv.system};
|
|
in {
|
|
programs.ncspot = {
|
|
enable = true;
|
|
};
|
|
programs.spicetify = {
|
|
enable = true;
|
|
enabledExtensions = with spicePkgs.extensions; [
|
|
volumePercentage
|
|
queueTime
|
|
groupSession
|
|
];
|
|
experimentalFeatures = true;
|
|
windowManagerPatch = true;
|
|
#colorScheme = "CatppuccinMocha";
|
|
#theme =
|
|
# spicePkgs.themes.text
|
|
# // {
|
|
# additionalCss = ''
|
|
# :root {
|
|
# --font-family: 'Monaspace Krypton', monospace;
|
|
# }
|
|
# '';
|
|
# };
|
|
};
|
|
}
|