spotify and nix flake update

This commit is contained in:
2026-04-04 10:23:20 +01:00
parent a01a2bcc47
commit 1c4be3e470
4 changed files with 78 additions and 47 deletions
+34
View File
@@ -0,0 +1,34 @@
{
den,
modules,
inputs,
...
}:
{
flake-file.inputs = {
spicetify-nix.url = "github:Gerg-L/spicetify-nix";
};
modules.spotify = {
homeManager =
{ pkgs, ... }:
let
spicePkgs = inputs.spicetify-nix.legacyPackages.${pkgs.stdenv.system};
in
{
imports = [
# Example for NixOS
inputs.spicetify-nix.nixosModules.spicetify
];
programs.spicetify = {
enable = true;
enabledExtensions = with spicePkgs.extensions; [
adblockify
hidePodcasts
shuffle # shuffle+ (special characters are sanitized out of extension names)
];
theme = spicePkgs.themes.catppuccin;
colorScheme = "mocha";
};
};
};
}