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:
Silvan Mosberger 2024-03-19 19:04:03 +01:00 committed by Bjørn Forsman
parent 509d2e8ed3
commit 308671dbe8

View File

@ -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 ''