13 lines
288 B
Nix
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
|
||
|
];
|
||
|
}
|