Files
nix-config/modules/home-manager/spicetify-nix.homeManagerModules.spicetify
2026-05-23 17:33:15 -07:00

15 lines
341 B
Plaintext

# For Home Manager: spicetify-nix.homeManagerModules.spicetify
{ pkgs, inputs, ... }:
let
spicePkgs = inputs.spicetify-nix.legacyPackages.${pkgs.system};
in {
programs.spicetify = {
enable = true;
enabledExtensions = with spicePkgs.extensions; [
];
theme = spicePkgs.themes.catppuccin;
colorScheme = "mocha";
};
}