aboutsummaryrefslogtreecommitdiff
path: root/modules/profiles/common
diff options
context:
space:
mode:
authortdback <tyler@tdback.net>2024-12-27 19:09:34 -0500
committertdback <tyler@tdback.net>2024-12-27 19:09:34 -0500
commit836ec67a008ce16c57ea5071ef901154f7e93ea9 (patch)
treebdd6cef8b412bc2f34da476753898ec319a8f507 /modules/profiles/common
parentc3f79aa804421d71f9a48296b3dea0cea2af0368 (diff)
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!
Diffstat (limited to 'modules/profiles/common')
-rw-r--r--modules/profiles/common/default.nix6
1 files changed, 1 insertions, 5 deletions
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 = {