feat(nix): enable experimental pipe-operators
Some checks failed
Check Formatting of Files / Check-Formatting (push) Failing after 33s

This commit is contained in:
Price Hiller 2024-11-06 16:01:31 -06:00
parent db641bb6b5
commit 71d4d32418
Signed by: Price
GPG Key ID: C3FADDE7A8534BEB
4 changed files with 6 additions and 2 deletions

View File

@ -3,6 +3,7 @@
nix = {
settings = {
experimental-features = [
"pipe-operators"
"nix-command"
"flakes"
];

View File

@ -31,6 +31,7 @@ let
];
# allow using the new flake commands in our workflows
experimental-features = [
"pipe-operators"
"nix-command"
"flakes"
];

View File

@ -7,6 +7,7 @@
nixPath = [ "nixpkgs=${inputs.nixpkgs}" ];
settings = {
experimental-features = [
"pipe-operators"
"nix-command"
"flakes"
];

View File

@ -7,6 +7,7 @@
};
settings = {
experimental-features = [
"pipe-operators"
"nix-command"
"flakes"
];