nixos-config/home/modules/spicetify.nix

23 lines
467 B
Nix
Raw Normal View History

{
2024-03-30 18:02:53 +01:00
pkgs,
lib,
inputs,
...
}: let
spicePkgs = inputs.spicetify-nix.packages.${pkgs.system}.default;
in {
imports = [inputs.spicetify-nix.homeManagerModule];
2024-03-30 18:02:53 +01:00
programs.spicetify = {
enable = true;
theme = spicePkgs.themes.catppuccin;
colorScheme = "mocha";
2024-03-30 18:02:53 +01:00
enabledExtensions = with spicePkgs.extensions; [
fullAppDisplay
shuffle # shuffle+ (special characters are sanitized out of ext names)
# hidePodcasts
];
};
}