diff options
author | Gregor Kleen <gkleen@yggdrasil.li> | 2022-02-12 20:09:09 +0100 |
---|---|---|
committer | Gregor Kleen <gkleen@yggdrasil.li> | 2022-02-12 20:09:09 +0100 |
commit | f5fc458891cecffe22e4d77d75f1ad26a6417298 (patch) | |
tree | 575baa92a785fad0b19cd0ddfe05f5cdc7e43b30 /system-profiles/core.nix | |
parent | 714dd0655d2d9a94e4c1703b6f68e831dd10faa2 (diff) | |
download | nixos-f5fc458891cecffe22e4d77d75f1ad26a6417298.tar nixos-f5fc458891cecffe22e4d77d75f1ad26a6417298.tar.gz nixos-f5fc458891cecffe22e4d77d75f1ad26a6417298.tar.bz2 nixos-f5fc458891cecffe22e4d77d75f1ad26a6417298.tar.xz nixos-f5fc458891cecffe22e4d77d75f1ad26a6417298.zip |
bump
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 | ''; |