diff options
Diffstat (limited to 'apps')
| -rw-r--r-- | apps/spicetify.nix | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/apps/spicetify.nix b/apps/spicetify.nix new file mode 100644 index 0000000..d215468 --- /dev/null +++ b/apps/spicetify.nix @@ -0,0 +1,20 @@ +{ pkgs, lib, spicetify-nix, ... }: + +{ + imports = [ spicetify-nix.homeManagerModule ]; + programs.spicetify = let + spicePkgs = spicetify-nix.legacyPackages.${pkgs.system}; + in { + # configure spicetify :) + enable = true; # this is the line that will cause spotify to get installed + theme = spicePkgs.themes.catppuccin-mocha; + colorScheme = "mauve"; + # enabledExtensions = with spicePkgs.extensions; [ + # # "playlistIcons.js" # only needed if not using dribbblish + # "fullAlbumDate.js" + # "showQueueDuration.js" + # "playNext.js" + # "shuffle+.js" + # ]; + } +} |
