1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2025-07-31 20:17:45 +00:00

Configure Nix better

This commit is contained in:
RGBCube 2024-01-15 18:08:03 +03:00
parent 5c577fbd00
commit e91cdcf9ed
No known key found for this signature in database

View file

@ -23,14 +23,26 @@ systemConfiguration {
}) inputs)) // { default.flake = inputs.nixpkgs; }; }) inputs)) // { default.flake = inputs.nixpkgs; };
settings.experimental-features = [ settings.experimental-features = [
"fetch-tree" "auto-allocate-uids"
"ca-derivations"
"cgroups"
"configurable-impure-env"
"flakes" "flakes"
"git-hashing"
"nix-command" "nix-command"
"recursive-nix"
"repl-flake" "repl-flake"
"verified-fetches"
]; ];
settings.trusted-users = [ "root" "@wheel" ]; settings = {
settings.warn-dirty = false; 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 {}; programs.nix-ld = enabled {};