liminalOS/users/youwen/linux/spicetify/default.nix

27 lines
462 B
Nix
Raw Normal View History

2024-08-23 23:14:53 -07:00
{
inputs,
pkgs,
...
2024-09-02 18:16:22 -07:00
}:
let
2024-08-23 23:14:53 -07:00
spicepkgs = inputs.spicetify.legacyPackages.${pkgs.system};
2024-09-02 18:16:22 -07:00
in
{
2024-08-23 23:14:53 -07:00
imports = [
inputs.spicetify.homeManagerModules.default
];
programs.spicetify = {
enable = true;
2024-10-30 21:38:05 -07:00
# theme = spicepkgs.themes.dribbblish;
# colorScheme = "rosepine";
2024-08-23 23:14:53 -07:00
enabledExtensions = with spicepkgs.extensions; [
lastfm
fullAppDisplayMod
];
enabledCustomApps = with spicepkgs.apps; [
lyricsPlus
2024-08-23 23:14:53 -07:00
];
};
}