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