flake/nixos/profiles/core/nix/nix.nix

42 lines
1.4 KiB
Nix
Raw Normal View History

2023-12-03 08:16:41 +00:00
{config, ...}: {
2023-09-19 00:17:43 +00:00
nix.settings = {
trusted-users = ["@wheel"];
2023-11-27 12:33:27 +00:00
substituters =
2023-12-03 08:16:41 +00:00
{
"Asia/Shanghai" = [
2023-12-03 23:54:27 +00:00
"https://mirror.sjtu.edu.cn/nix-channels/store" # SJTU - 上海交通大学 Mirror
2023-11-27 12:33:27 +00:00
"https://mirrors.ustc.edu.cn/nix-channels/store" # USTC - 中国科学技术大学 Mirror
"https://mirrors.tuna.tsinghua.edu.cn/nix-channels/store" # TUNA - 清华大学 Mirror
2023-12-03 08:16:41 +00:00
];
}
.${config.time.timeZone}
++ [
"https://nix-community.cachix.org"
"https://cache.garnix.io"
2023-11-27 12:33:27 +00:00
];
2023-09-19 00:17:43 +00:00
trusted-public-keys = [
2023-09-26 23:40:21 +00:00
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
"cache.garnix.io:CTFPyKSLcx5RMJKfLo5EEPUObbA78b0YQ2DTCJXqr9g="
2023-09-19 00:17:43 +00:00
];
use-xdg-base-directories = true;
};
documentation = {
doc.enable = false;
info.enable = false;
nixos.enable = false;
};
system = {
# This value determines the NixOS release from which the default
# settings for stateful data, like file locations and database versions
# on your system were taken. It's perfectly fine and recommended to leave
# this value at the release version of the first install of this system.
# Before changing this value read the documentation for this option
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
# TLDR: leave it alone
stateVersion = "23.05";
};
}