Heavily inspired by https://github.com/Doc-Steve/dendritic-design-with-flake-parts. > Atomic commits? Never heard of them!
31 lines
755 B
Nix
31 lines
755 B
Nix
{ inputs, ... }: {
|
|
flake-file.inputs = {
|
|
spicetify-nix.url = "github:Gerg-L/spicetify-nix";
|
|
spicetify-nix.inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
|
|
flake.modules.homeManager.spicetify = { pkgs, ... }: {
|
|
imports = [
|
|
inputs.spicetify-nix.homeManagerModules.default
|
|
];
|
|
|
|
programs.spicetify =
|
|
let
|
|
spkgs = inputs.spicetify-nix.legacyPackages.${pkgs.stdenv.hostPlatform.system};
|
|
in
|
|
{
|
|
enable = true;
|
|
enabledExtensions = with spkgs.extensions; [
|
|
fullAppDisplay
|
|
shuffle
|
|
aiBandBlocker
|
|
];
|
|
enabledCustomApps = with spkgs.apps; [
|
|
newReleases
|
|
];
|
|
theme = spkgs.themes.catppuccin;
|
|
colorScheme = "mocha";
|
|
};
|
|
};
|
|
}
|