15 lines
341 B
Plaintext
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";
|
|
};
|
|
}
|