blob: 7783a96434f78db80ae70144df24f3177233c47c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
{ config, lib, ... }:
{
nix.settings = {
substituters = [
"https://helix.cachix.org"
];
trusted-public-keys = [
"helix.cachix.org-1:ejp9KQpR1FBI2onstMQ34yogDm4OgU2ru6lIwPvuCVs="
];
};
}
|