From fd9abd48faef255b54c173114331f5d94ae11231 Mon Sep 17 00:00:00 2001 From: Infinidoge Date: Mon, 31 Jan 2022 02:53:48 -0500 Subject: [PATCH] fix(nix): system-feature -> system-features --- modules/devos/nix.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/devos/nix.nix b/modules/devos/nix.nix index 2c5b191..3f022fa 100644 --- a/modules/devos/nix.nix +++ b/modules/devos/nix.nix @@ -9,7 +9,7 @@ with lib; trusted-users = [ "root" "@wheel" ]; - system-feature = [ "nixos-test" "benchmark" "big-parallel" "kvm" ]; + system-features = [ "nixos-test" "benchmark" "big-parallel" "kvm" ]; auto-optimise-store = true;