mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-02-22 16:07:40 +01:00
42 lines
1.2 KiB
Nix
42 lines
1.2 KiB
Nix
{
|
|
config,
|
|
lib,
|
|
username,
|
|
...
|
|
}: {
|
|
nix.extraOptions = ''
|
|
!include ${config.age.secrets.nix-access-tokens.path}
|
|
'';
|
|
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];
|
|
|
|
# substituers that will be considered before the official ones(https://cache.nixos.org)
|
|
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://nix-community.cachix.org"
|
|
# my own cache server
|
|
"https://ryan4yin.cachix.org"
|
|
];
|
|
|
|
trusted-public-keys = [
|
|
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
|
|
"ryan4yin.cachix.org-1:Gbk27ZU5AYpGS9i3ssoLlwdvMIh0NxG0w8it/cv9kbU="
|
|
];
|
|
builders-use-substitutes = true;
|
|
};
|
|
|
|
# Allow unfree packages
|
|
nixpkgs.config.allowUnfree = lib.mkDefault false;
|
|
}
|