From 10c7e7cee8f976c88d950d8dd80e1481bfc39f95 Mon Sep 17 00:00:00 2001 From: emily Date: Sun, 18 Aug 2024 13:54:42 +0200 Subject: [PATCH] Enable pipe-operators --- config/common/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/config/common/default.nix b/config/common/default.nix index 214df7e..7fd0b2d 100644 --- a/config/common/default.nix +++ b/config/common/default.nix @@ -53,6 +53,7 @@ with lib; { ''; users.motdFile = "/var/lib/deployment/motd"; + nix.package = pkgs.nixVersions.latest; nix.gc.automatic = true; nix.gc.options = "--delete-older-than 7d"; nix.optimise.automatic = true; @@ -61,7 +62,7 @@ with lib; { path = pkgs.path; }; nix.settings = { - experimental-features = [ "nix-command" "flakes" ]; + experimental-features = [ "nix-command" "flakes" "pipe-operators" ]; trusted-users = [ "root" "@wheel" ]; substituters = [ "https://cache.kyouma.net" ]; trusted-public-keys = [ "cache.kyouma.net:Frjwu4q1rnwE/MnSTmX9yx86GNA/z3p/oElGvucLiZg=" ];