liminalOS/users/youwen/linux/spicetify/default.nix
2024-08-23 23:14:53 -07:00

20 lines
360 B
Nix

{
inputs,
pkgs,
...
}: let
spicepkgs = inputs.spicetify.legacyPackages.${pkgs.system};
in {
imports = [
inputs.spicetify.homeManagerModules.default
];
programs.spicetify = {
enable = true;
theme = spicepkgs.themes.catppuccin;
colorScheme = "mocha";
enabledExtensions = with spicepkgs.extensions; [
lastfm
];
};
}