hm: use spicetify-nix module

This commit is contained in:
Alexandre Cavalheiro S. Tiago da Silva 2024-07-16 00:43:51 -03:00
parent bec571b540
commit d9b50cde73
Signed by: wizardlink
GPG key ID: A5767B54367CFBDF
3 changed files with 22 additions and 1 deletions

View file

@ -8,6 +8,8 @@
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
spicetify-nix.url = "github:the-argus/spicetify-nix";
};
outputs =

View file

@ -15,6 +15,7 @@
./programs/neovim
./programs/obs-studio.nix
./programs/rofi
./programs/spotify
./programs/tmux
./programs/waybar.nix
./programs/wezterm
@ -90,7 +91,6 @@
## Entertainment
jellyfin-media-player
spotify
# Gaming
protontricks

View file

@ -0,0 +1,19 @@
{ pkgs, spicetify-nix, ... }:
let
spicePkgs = spicetify-nix.packages.${pkgs.system}.default;
in
{
imports = [ spicetify-nix.homeManagerModule ];
programs.spicetify = {
enable = true;
theme = spicePkgs.themes.catppuccin;
colorScheme = "frappe";
enabledExtensions = with spicePkgs.extensions; [
autoVolume
shuffle
];
};
}