summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorozpv <39195175+ozpv@users.noreply.github.com>2024-07-27 21:42:40 +0000
committerGitHub <noreply@github.com>2024-07-27 21:42:40 +0000
commit5876f2325d1977350bc6406deb86cecab0505f8d (patch)
treeef294da37acb45e4e899e35877b5fb152aa157ea /apps
parentef3c406c013d8b751a02a5335a771cba87d1d3a3 (diff)
nvidia stuff
Diffstat (limited to 'apps')
-rw-r--r--apps/spicetify.nix20
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"
+ # ];
+ }
+}