mirror of
https://github.com/youwen5/nixos.git
synced 2024-11-25 02:03:51 -08:00
20 lines
360 B
Nix
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
|
|
];
|
|
};
|
|
}
|