feat: add spicetify

This commit is contained in:
Youwen Wu 2024-08-23 23:14:53 -07:00
parent 6c200053b2
commit 4516685bb9
Signed by: youwen
GPG key ID: 865658ED1FE61EC3
5 changed files with 64 additions and 10 deletions

View file

@ -4,7 +4,6 @@ in {
home.packages =
(createCommon pkgs)
++ (with pkgs; [
spotify
bitwarden-desktop
modrinth-app
lutris

View file

@ -0,0 +1,20 @@
{
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
];
};
}