Merge pull request #2841 from amesgen/flake-binary-cache

Add HLS Cachix to `nixConfig` in flake
This commit is contained in:
Michael Peyton Jones 2022-04-20 09:39:25 +01:00 committed by GitHub
commit 6ca2587512
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -381,4 +381,13 @@
devShell = devShells.haskell-language-server-dev;
});
nixConfig = {
extra-substituters = [
"https://haskell-language-server.cachix.org"
];
extra-trusted-public-keys = [
"haskell-language-server.cachix.org-1:juFfHrwkOxqIOZShtC4YC1uT1bBcq2RSvC7OMKx0Nz8="
];
};
}