{ inputs, pkgs, ... }:

{
  nix.settings = {
    trusted-substituters = ["https://getchoo.cachix.org"];
    trusted-public-keys = ["getchoo.cachix.org-1:ftdbAUJVNaFonM0obRGgR5+nUmdLMM+AOvDOSx0z5tE="];
  };

  home.packages = with inputs.getchoo.packages.${pkgs.system}; [
    modrinth-app
  ];
}