KaitoianOS/users/kaitotlex/spicetify.nix

19 lines
436 B
Nix
Raw Normal View History

{ inputs, pkgs, ... }:
let
2024-09-03 18:05:41 -07:00
spicepkgs = inputs.spicetify.legacyPackages.${pkgs.system};
in
{
imports = [ inputs.spicetify.homeManagerModules.default ];
2024-09-03 18:05:41 -07:00
programs.spicetify = {
enable = true;
theme = spicepkgs.themes.dribbblish;
colorScheme = "rosepine";
enabledExtensions = with spicepkgs.extensions; [
lastfm
fullAppDisplayMod
];
enabledCustomApps = with spicepkgs.apps; [ lyricsPlus ];
2024-09-03 18:05:41 -07:00
};
}