Auto-commit: 2026-01-05 16:07:02

This commit is contained in:
2026-01-05 16:07:02 +00:00
parent c621e40ae9
commit cf3b18b362

View File

@@ -1,8 +1,12 @@
{ inputs, pkgs, ... }: { inputs, pkgs, config, lib, ... }:
let
cfg = config.my.desktop.spicetify;
in
{ {
imports = [ imports = [
inputs.spicetify-nix.homeManagerModules.default inputs.spicetify-nix.homeManagerModules.default
]; ];
config = lib.mkIf cfg.enable {
programs.spicetify = programs.spicetify =
let let
spicePkgs = inputs.spicetify-nix.legacyPackages.${pkgs.stdenv.hostPlatform.system}; spicePkgs = inputs.spicetify-nix.legacyPackages.${pkgs.stdenv.hostPlatform.system};
@@ -30,4 +34,5 @@
theme = spicePkgs.themes.catppuccin; theme = spicePkgs.themes.catppuccin;
colorScheme = "mocha"; colorScheme = "mocha";
}; };
};
} }