diff options
Diffstat (limited to 'system-profiles/core.nix')
-rw-r--r-- | system-profiles/core.nix | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/system-profiles/core.nix b/system-profiles/core.nix index c243f857..0b20d944 100644 --- a/system-profiles/core.nix +++ b/system-profiles/core.nix | |||
@@ -43,9 +43,11 @@ in { | |||
43 | 43 | ||
44 | nix = { | 44 | nix = { |
45 | package = pkgs.nixUnstable; | 45 | package = pkgs.nixUnstable; |
46 | useSandbox = true; | 46 | settings = { |
47 | allowedUsers = [ "*" ]; | 47 | sandbox = true; |
48 | trustedUsers = [ "root" "@wheel" ]; | 48 | allowed-users = [ "*" ]; |
49 | trusted-users = [ "root" "@wheel" ]; | ||
50 | }; | ||
49 | extraOptions = '' | 51 | extraOptions = '' |
50 | experimental-features = nix-command flakes | 52 | experimental-features = nix-command flakes |
51 | ''; | 53 | ''; |