From 836ec67a008ce16c57ea5071ef901154f7e93ea9 Mon Sep 17 00:00:00 2001 From: tdback Date: Fri, 27 Dec 2024 19:09:34 -0500 Subject: fix: remove pipe-operators experimental feature im going to hold off on using the pipe-operators until they are an official part of the nix language. in its current state portability gets hurt for any modules using the feature, since one has to manually opt-in. in the end, it's just a syntax change! --- modules/profiles/common/default.nix | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'modules/profiles/common') diff --git a/modules/profiles/common/default.nix b/modules/profiles/common/default.nix index c25fece..67d228a 100644 --- a/modules/profiles/common/default.nix +++ b/modules/profiles/common/default.nix @@ -3,11 +3,7 @@ nix = { settings = { trusted-users = [ "@wheel" "root" ]; - experimental-features = lib.mkDefault [ - "nix-command" - "flakes" - "pipe-operators" - ]; + experimental-features = lib.mkDefault [ "nix-command" "flakes" ]; auto-optimise-store = true; }; gc = { -- cgit v1.2.3