mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-02-23 08:24:49 +01:00
35 lines
913 B
Nix
35 lines
913 B
Nix
{
|
|
pkgs,
|
|
lib,
|
|
username,
|
|
...
|
|
}: {
|
|
nix.settings = {
|
|
# enable flakes globally
|
|
experimental-features = ["nix-command" "flakes"];
|
|
|
|
# given the users in this list the right to specify additional substituters via:
|
|
# 1. `nixConfig.substituers` in `flake.nix`
|
|
# 2. command line args `--options substituers http://xxx`
|
|
trusted-users = [username];
|
|
|
|
substituters = [
|
|
# cache mirror located in China
|
|
# status: https://mirror.sjtu.edu.cn/
|
|
"https://mirror.sjtu.edu.cn/nix-channels/store"
|
|
# status: https://mirrors.ustc.edu.cn/status/
|
|
# "https://mirrors.ustc.edu.cn/nix-channels/store"
|
|
|
|
"https://cache.nixos.org"
|
|
];
|
|
|
|
trusted-public-keys = [
|
|
"cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY="
|
|
];
|
|
builders-use-substitutes = true;
|
|
};
|
|
|
|
# Allow unfree packages
|
|
nixpkgs.config.allowUnfree = lib.mkDefault false;
|
|
}
|