flake/users/guanranwang/home-manager/applications/spotify/default.nix

20 lines
382 B
Nix
Raw Normal View History

2023-11-09 15:43:05 +00:00
{
pkgs,
2023-11-14 03:22:17 +00:00
inputs,
2023-11-09 15:43:05 +00:00
...
}: let
2023-11-14 03:22:17 +00:00
spicePkgs = inputs.spicetify-nix.packages.${pkgs.system}.default;
2023-11-09 15:43:05 +00:00
in {
# import the flake's module for your system
2023-11-14 03:22:17 +00:00
imports = [inputs.spicetify-nix.homeManagerModule];
2023-11-09 15:43:05 +00:00
# configure spicetify :)
programs.spicetify = {
enable = true;
enabledExtensions = with spicePkgs.extensions; [
adblock
keyboardShortcut
];
};
}