nix-conf/system/modules/nixsettings.nix
2025-09-25 19:58:19 +08:00

24 lines
508 B
Nix

{ inputs, ... }:
{
documentation.nixos.enable = false;
nix = {
settings = {
substituters = [
"https://cache.net.dn/dn-main"
];
trusted-public-keys = [
"dn-main:ZjQmZEOWpe0TjZgHGwkgtPdOUXpN82RL9wy30EW1V7k="
];
warn-dirty = false;
trusted-users = [
"@wheel"
];
experimental-features = [
"nix-command"
"flakes"
];
auto-optimise-store = true;
};
nixPath = [ "nixpkgs=${inputs.nixpkgs}" ];
};
}