flake: add pipe-operator, add features to flake.nix

This commit is contained in:
Infinidoge 2024-09-29 00:55:39 -04:00
parent b328fe0dff
commit 672536871c
Signed by: Infinidoge
SSH key fingerprint: SHA256:oAMyvotlNFraMmZmr+p6AxnNfW/GioTs1pOn3V4tQ7A
2 changed files with 14 additions and 1 deletions

View file

@ -3,6 +3,13 @@
nixConfig = {
allow-import-from-derivation = true;
extra-experimental-features = [
"nix-command"
"flakes"
"impure-derivations"
"no-url-literals"
"pipe-operator"
];
};
inputs = {

View file

@ -11,7 +11,13 @@ in
trusted-users = [ "root" "@wheel" "remotebuild" "nix-ssh" ];
system-features = [ "nixos-test" "benchmark" "big-parallel" "kvm" ];
experimental-features = [ "flakes" "nix-command" "impure-derivations" "no-url-literals" ];
experimental-features = [
"flakes"
"nix-command"
"impure-derivations"
"no-url-literals"
"pipe-operator"
];
allow-import-from-derivation = true;
auto-optimise-store = true;