linuxware/programs/spotify/default.nix

20 lines
363 B
Nix
Raw Normal View History

2024-07-16 00:43:51 -03:00
{ 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
];
};
}