2024-03-09 17:18:36 +01:00
|
|
|
{ inputs, pkgs, ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
nix.settings = {
|
2024-03-23 09:30:13 +01:00
|
|
|
trusted-substituters = ["https://getchoo.cachix.org"];
|
2024-03-09 17:18:36 +01:00
|
|
|
trusted-public-keys = ["getchoo.cachix.org-1:ftdbAUJVNaFonM0obRGgR5+nUmdLMM+AOvDOSx0z5tE="];
|
|
|
|
};
|
|
|
|
|
|
|
|
home.packages = with inputs.getchoo.packages.${pkgs.system}; [
|
|
|
|
modrinth-app
|
|
|
|
];
|
|
|
|
}
|