19 lines
402 B
Nix
19 lines
402 B
Nix
{
|
|
pkgs,
|
|
inputs,
|
|
...
|
|
}: let
|
|
spicePkgs = inputs.spicetify-nix.packages.${pkgs.stdenv.hostPlatform.system}.default;
|
|
in {
|
|
# import the flake's module for your system
|
|
imports = [inputs.spicetify-nix.homeManagerModule];
|
|
|
|
# configure spicetify :)
|
|
programs.spicetify = {
|
|
enable = true;
|
|
enabledExtensions = with spicePkgs.extensions; [
|
|
adblock
|
|
keyboardShortcut
|
|
];
|
|
};
|
|
}
|