mirror of
https://git.gay/xqtc/nixos-config
synced 2024-11-22 20:40:32 +01:00
23 lines
508 B
Nix
23 lines
508 B
Nix
{
|
|
pkgs,
|
|
lib,
|
|
inputs,
|
|
...
|
|
}: let
|
|
spicePkgs = inputs.spicetify-nix.packages.${pkgs.system}.default;
|
|
in {
|
|
imports = [inputs.spicetify-nix.homeManagerModule];
|
|
|
|
programs.spicetify = lib.mkIf (pkgs.system == "x86_64-linux") {
|
|
enable = true;
|
|
theme = spicePkgs.themes.catppuccin;
|
|
colorScheme = "mocha";
|
|
|
|
enabledExtensions = with spicePkgs.extensions; [
|
|
fullAppDisplay
|
|
shuffle # shuffle+ (special characters are sanitized out of ext names)
|
|
# hidePodcasts
|
|
];
|
|
};
|
|
}
|