flake: add pipe-operator, add features to flake.nix
This commit is contained in:
parent
b328fe0dff
commit
672536871c
2 changed files with 14 additions and 1 deletions
|
@ -3,6 +3,13 @@
|
||||||
|
|
||||||
nixConfig = {
|
nixConfig = {
|
||||||
allow-import-from-derivation = true;
|
allow-import-from-derivation = true;
|
||||||
|
extra-experimental-features = [
|
||||||
|
"nix-command"
|
||||||
|
"flakes"
|
||||||
|
"impure-derivations"
|
||||||
|
"no-url-literals"
|
||||||
|
"pipe-operator"
|
||||||
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
inputs = {
|
inputs = {
|
||||||
|
|
|
@ -11,7 +11,13 @@ in
|
||||||
trusted-users = [ "root" "@wheel" "remotebuild" "nix-ssh" ];
|
trusted-users = [ "root" "@wheel" "remotebuild" "nix-ssh" ];
|
||||||
|
|
||||||
system-features = [ "nixos-test" "benchmark" "big-parallel" "kvm" ];
|
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;
|
allow-import-from-derivation = true;
|
||||||
auto-optimise-store = true;
|
auto-optimise-store = true;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue