nixos/nix: Fix example for nix.settings
option
Attribute sets aren't valid option values, needs to be a list
This commit is contained in:
parent
509d2e8ed3
commit
308671dbe8
1 changed files with 1 additions and 1 deletions
|
@ -352,7 +352,7 @@ in
|
|||
show-trace = true;
|
||||
|
||||
system-features = [ "big-parallel" "kvm" "recursive-nix" ];
|
||||
sandbox-paths = { "/bin/sh" = "''${pkgs.busybox-sandbox-shell.out}/bin/busybox"; };
|
||||
sandbox-paths = [ "/bin/sh=''${pkgs.busybox-sandbox-shell.out}/bin/busybox" ];
|
||||
}
|
||||
'';
|
||||
description = lib.mdDoc ''
|
||||
|
|
Loading…
Reference in a new issue