system/nix-stable: fix rename warning
This commit is contained in:
parent
cf6f8131ed
commit
506cb016ad
1 changed files with 12 additions and 10 deletions
|
|
@ -1,14 +1,16 @@
|
||||||
{ config, lib, pkgs, ... }: {
|
{ config, lib, pkgs, ... }: {
|
||||||
nix = rec {
|
nix = {
|
||||||
binaryCaches = [
|
settings = rec {
|
||||||
"https://cache.nixos.org?priority=10"
|
substituters = [
|
||||||
"https://lava.cachix.org"
|
"https://cache.nixos.org?priority=10"
|
||||||
];
|
"https://lava.cachix.org"
|
||||||
binaryCachePublicKeys = [
|
];
|
||||||
"cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY="
|
trusted-public-keys = [
|
||||||
"lava.cachix.org-1:8lTWI/3IKWHByzzYHZySunMPYs2eAJw2duL+uLZkSy0="
|
"cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY="
|
||||||
];
|
"lava.cachix.org-1:8lTWI/3IKWHByzzYHZySunMPYs2eAJw2duL+uLZkSy0="
|
||||||
trustedBinaryCaches = binaryCaches;
|
];
|
||||||
|
trusted-substituters = substituters;
|
||||||
|
};
|
||||||
|
|
||||||
extraOptions = ''
|
extraOptions = ''
|
||||||
experimental-features = nix-command flakes
|
experimental-features = nix-command flakes
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue