First Commit

This commit is contained in:
2026-01-05 04:04:36 +01:00
commit c7a17f7772
83 changed files with 3574 additions and 0 deletions

33
home/spicetify.nix Normal file
View File

@@ -0,0 +1,33 @@
{ inputs, pkgs, ... }:
{
imports = [
inputs.spicetify-nix.homeManagerModules.default
];
programs.spicetify =
let
spicePkgs = inputs.spicetify-nix.legacyPackages.${pkgs.stdenv.hostPlatform.system};
in
{
enable = true;
enabledExtensions = with spicePkgs.extensions; [
hidePodcasts
shuffle # shuffle+ (special characters are sanitized out of extension names)
betterGenres
lastfm
adblock
beautifulLyrics
aiBandBlocker
];
enabledCustomApps = with spicePkgs.apps; [
lyricsPlus
betterLibrary
newReleases
];
enabledSnippets = with spicePkgs.snippets; [
pointer
];
theme = spicePkgs.themes.catppuccin;
colorScheme = "mocha";
};
}