49 lines
1.4 KiB
Nix
49 lines
1.4 KiB
Nix
{config, ...}: {
|
|
nix.settings = {
|
|
substituters =
|
|
{
|
|
"Asia/Shanghai" = [
|
|
"https://mirror.sjtu.edu.cn/nix-channels/store" # SJTU - 上海交通大学 Mirror
|
|
"https://mirrors.ustc.edu.cn/nix-channels/store" # USTC - 中国科学技术大学 Mirror
|
|
"https://mirrors.tuna.tsinghua.edu.cn/nix-channels/store" # TUNA - 清华大学 Mirror
|
|
];
|
|
}
|
|
.${config.time.timeZone}
|
|
or []
|
|
++ [
|
|
"https://nix-community.cachix.org"
|
|
"https://cache.garnix.io"
|
|
"https://guanran928.cachix.org"
|
|
];
|
|
trusted-public-keys = [
|
|
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
|
|
"cache.garnix.io:CTFPyKSLcx5RMJKfLo5EEPUObbA78b0YQ2DTCJXqr9g="
|
|
"guanran928.cachix.org-1:BE/iBCj2/pqJXG908wHRrcaV0B2fC+KbFjHsXY6b91c="
|
|
];
|
|
|
|
trusted-users = ["@wheel"];
|
|
experimental-features = [
|
|
"auto-allocate-uids"
|
|
"cgroups"
|
|
"no-url-literals"
|
|
];
|
|
allow-import-from-derivation = false;
|
|
auto-allocate-uids = true;
|
|
builders-use-substitutes = true;
|
|
use-cgroups = true;
|
|
use-xdg-base-directories = true;
|
|
};
|
|
|
|
documentation = {
|
|
doc.enable = false;
|
|
info.enable = false;
|
|
nixos.enable = false;
|
|
};
|
|
|
|
# https://github.com/NixOS/nixpkgs/pull/308801
|
|
# nixos/switch-to-configuration: add new implementation
|
|
system.switch = {
|
|
enable = false;
|
|
enableNg = true;
|
|
};
|
|
}
|