feat: premiumless premium, finally a thing

This commit is contained in:
Teesh 2026-02-01 18:35:50 +02:00
parent c1cec3f00b
commit 985453e6be
3 changed files with 75 additions and 1 deletions

View file

@ -0,0 +1,21 @@
{ inputs, ... }:
{
flake.modules.nixos.desktop = { pkgs, ... }: let
spicePkgs = inputs.spicetify-nix.legacyPackages.${pkgs.stdenv.hostPlatform.system};
in {
imports = [
inputs.spicetify-nix.nixosModules.default
];
programs.spicetify = {
enable = true;
enabledExtensions = with spicePkgs.extensions; [
adblock
hidePodcasts
shuffle
];
};
};
}