feat: move spicetify tp separate file

This commit is contained in:
2026-07-05 12:12:48 +03:00
parent c8e02917f0
commit 4c010f7a65
3 changed files with 19 additions and 10 deletions
+16
View File
@@ -0,0 +1,16 @@
# spicetify.nix
{
pkgs,
inputs,
...
}: {
programs.spicetify = let
spicePkgs = inputs.spicetify-nix.legacyPackages.${pkgs.stdenv.hostPlatform.system};
in {
enable = true;
enabledExtensions = with spicePkgs.extensions; [
adblock
beautiful-lyrics
];
};
}