nix/modules/home/programs/modrinth.nix

13 lines
288 B
Nix
Raw Normal View History

2024-03-09 17:18:36 +01:00
{ 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
];
}