nix/modules/home/programs/modrinth.nix
2024-03-09 17:18:36 +01:00

13 lines
288 B
Nix

{ inputs, pkgs, ... }:
{
nix.settings = {
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
];
}