diff --git a/flake.nix b/flake.nix index 57c2e62..3d2dc94 100644 --- a/flake.nix +++ b/flake.nix @@ -3,6 +3,13 @@ nixConfig = { allow-import-from-derivation = true; + extra-experimental-features = [ + "nix-command" + "flakes" + "impure-derivations" + "no-url-literals" + "pipe-operator" + ]; }; inputs = { diff --git a/modules/global/nix.nix b/modules/global/nix.nix index ead91bc..67da512 100644 --- a/modules/global/nix.nix +++ b/modules/global/nix.nix @@ -11,7 +11,13 @@ in trusted-users = [ "root" "@wheel" "remotebuild" "nix-ssh" ]; system-features = [ "nixos-test" "benchmark" "big-parallel" "kvm" ]; - experimental-features = [ "flakes" "nix-command" "impure-derivations" "no-url-literals" ]; + experimental-features = [ + "flakes" + "nix-command" + "impure-derivations" + "no-url-literals" + "pipe-operator" + ]; allow-import-from-derivation = true; auto-optimise-store = true;