nixfiles/home/profiles/graphical/spotify.nix
2025-07-13 05:10:57 -07:00

28 lines
569 B
Nix

{
pkgs,
inputs,
...
}: let
spicePkgs = inputs.spicetify-nix.legacyPackages.${pkgs.stdenv.system};
in {
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;
}
'';
};
};
}