mirror of
https://github.com/RGBCube/ncc
synced 2025-07-31 20:17:45 +00:00
Configure Nix better
This commit is contained in:
parent
5c577fbd00
commit
e91cdcf9ed
1 changed files with 15 additions and 3 deletions
|
@ -23,14 +23,26 @@ systemConfiguration {
|
|||
}) inputs)) // { default.flake = inputs.nixpkgs; };
|
||||
|
||||
settings.experimental-features = [
|
||||
"fetch-tree"
|
||||
"auto-allocate-uids"
|
||||
"ca-derivations"
|
||||
"cgroups"
|
||||
"configurable-impure-env"
|
||||
"flakes"
|
||||
"git-hashing"
|
||||
"nix-command"
|
||||
"recursive-nix"
|
||||
"repl-flake"
|
||||
"verified-fetches"
|
||||
];
|
||||
|
||||
settings.trusted-users = [ "root" "@wheel" ];
|
||||
settings.warn-dirty = false;
|
||||
settings = {
|
||||
accept-flake-config = true;
|
||||
builders-use-substitutes = true;
|
||||
http-connections = 50;
|
||||
trusted-users = [ "root" "@wheel" ];
|
||||
use-cgroups = true;
|
||||
warn-dirty = false;
|
||||
};
|
||||
};
|
||||
|
||||
programs.nix-ld = enabled {};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue