(wip) nixos/nix: disable unwanted options
This commit is contained in:
parent
abe59b02a3
commit
f465562720
1 changed files with 6 additions and 1 deletions
|
@ -22,7 +22,12 @@
|
||||||
];
|
];
|
||||||
|
|
||||||
trusted-users = ["@wheel"];
|
trusted-users = ["@wheel"];
|
||||||
experimental-features = ["auto-allocate-uids" "cgroups"];
|
experimental-features = [
|
||||||
|
"auto-allocate-uids"
|
||||||
|
"cgroups"
|
||||||
|
"no-url-literals"
|
||||||
|
];
|
||||||
|
allow-import-from-derivation = false;
|
||||||
auto-allocate-uids = true;
|
auto-allocate-uids = true;
|
||||||
builders-use-substitutes = true;
|
builders-use-substitutes = true;
|
||||||
use-cgroups = true;
|
use-cgroups = true;
|
||||||
|
|
Loading…
Reference in a new issue