linuxware/programs/spotify/default.nix

20 lines
370 B
Nix
Raw Normal View History

2024-07-16 00:43:51 -03:00
{ pkgs, spicetify-nix, ... }:
let
spicePkgs = spicetify-nix.legacyPackages.${pkgs.system};
2024-07-16 00:43:51 -03:00
in
{
imports = [ spicetify-nix.homeManagerModules.default ];
2024-07-16 00:43:51 -03:00
programs.spicetify = {
enable = true;
2024-07-16 00:43:51 -03:00
theme = spicePkgs.themes.catppuccin;
colorScheme = "frappe";
enabledExtensions = with spicePkgs.extensions; [
autoVolume
shuffle
];
};
}