Alexandre b7c525f994
All checks were successful
Check config / build (push) Successful in 46s
Fixed errors
2026-07-12 02:33:49 +02:00

26 lines
532 B
Nix

{ self, inputs, ... }:
{
flake.nixosModules.spicetify = {pkgs, lib, ...}:
let
spicePkgs = inputs.spicetify-nix.legacyPackages.${pkgs.stdenv.system};
in
{
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";
};
};
}