add pipe-operator nix feature
All checks were successful
Test action / Print hello world (push) Successful in 1s

This commit is contained in:
Chris Kruining 2025-09-03 17:44:19 +02:00
parent a91afd3b0a
commit b8b8e015c5
No known key found for this signature in database
GPG key ID: EB894A3560CCCAD2

View file

@ -15,10 +15,10 @@ in
nix = {
package = pkgs.nixVersions.latest;
extraOptions = "experimental-features = nix-command flakes";
extraOptions = "experimental-features = nix-command flakes pipe-operator";
settings = {
experimental-features = [ "nix-command" "flakes" ];
experimental-features = [ "nix-command" "flakes" "pipe-operator" ];
allowed-users = [ "@wheel" ];
trusted-users = [ "@wheel" ];