2026-07-12 02:15:59 +02:00

28 lines
602 B
Nix

{ self, inputs, ... }:
let
spicePkgs = inputs.spicetify-nix.legacyPackages.${self.system};
in {
flake = {
homeModules = {
spicetify = {pkgs, lib, ...}: {
programs.spicetify = {
enable = true;
enabledCustomApps = with spicePkgs.apps; [
newReleases
ncsVisualizer
];
enabledSnippets = with spicePkgs.snippets; [
rotatingCoverart
pointer
];
theme = lib.mkDefault spicePkgs.themes.catppuccin;
colorScheme = lib.mkDefault "mocha";
};
};
};
};
}