1
0
Fork 0
forked from foxora/nix
flake-foxora/homes/modules/programs/spicetify.nix

33 lines
749 B
Nix
Raw Normal View History

2026-02-13 23:27:35 +10:00
{
inputs,
upkgs,
system,
...
}: let
spicetifyPkgs = inputs.spicetify-nix.legacyPackages.${system};
2026-02-12 18:53:24 +00:00
in {
2026-02-13 23:27:35 +10:00
imports = [inputs.spicetify-nix.homeManagerModules.default];
2026-02-12 18:53:24 +00:00
programs.spicetify = {
enable = true;
enabledExtensions = with spicetifyPkgs.extensions; [
adblock
shuffle
keyboardShortcut
2026-02-13 23:27:35 +10:00
{
src =
(upkgs.fetchFromGitHub {
owner = "Spikerko";
repo = "spicy-lyrics";
rev = "568c83326aa6aba6ded28c95df6fcfb25cab3648";
hash = "sha256-lej93EDzGkmyrg5YMdPSqzrxlIfKsfaDBZosTvxoTNw=";
})
+ /builds;
name = "spicy-lyrics.mjs";
}
2026-02-12 18:53:24 +00:00
];
theme = spicetifyPkgs.themes.comfy;
colorScheme = "Sakura";
};
}