21 lines
500 B
Nix
21 lines
500 B
Nix
#
|
|
# General nix settings.
|
|
#
|
|
# vim: et:ts=2:sw=2:
|
|
#
|
|
{ config, ... }:
|
|
{
|
|
nix = {
|
|
# Use nix, lix, and our local cache.
|
|
substituters = [
|
|
"https://cache.nixos.org"
|
|
"https://cache.lix.systems"
|
|
"https://niri.cachix.org"
|
|
];
|
|
trustedPublicKeys = [
|
|
"cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY="
|
|
"cache.lix.systems:aBnZUw8zA7H35Cz2RyKFVs3H4PlGTLawyY5KRbvJR8o="
|
|
"niri.cachix.org-1:Wv0OmO7PsuocRKzfDoJ3mulSl7Z6oezYhGhR+3W2964="
|
|
];
|
|
};
|
|
}
|