nixos-config/home/modules/spicetify.nix

23 lines
508 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-04-11 20:36:58 +02:00
programs.spicetify = lib.mkIf (pkgs.system == "x86_64-linux") {
2024-03-30 18:02:53 +01:00
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
];
};
}