I NEED TECH SUPPORT

This commit is contained in:
KaitoTLex 2024-09-03 18:05:41 -07:00
commit 63888160ec
7 changed files with 992 additions and 0 deletions

24
spicetify.nix Normal file
View file

@ -0,0 +1,24 @@
{
inputs,
pkgs,
...
}: let
spicepkgs = inputs.spicetify.legacyPackages.${pkgs.system};
in {
imports = [
inputs.spicetify.homeManagerModules.default
];
programs.spicetify = {
enable = true;
theme = spicepkgs.themes.dribbblish;
colorScheme = "rosepine";
enabledExtensions = with spicepkgs.extensions; [
lastfm
fullAppDisplayMod
];
enabledCustomApps = with spicepkgs.apps; [
lyricsPlus
];
};
}