From cd5c0f18ea5883f116ac0b98b2536ba9948d471e Mon Sep 17 00:00:00 2001 From: kalipso Date: Wed, 23 Oct 2024 12:11:16 +0200 Subject: [PATCH] try fix actions kvm error https://github.com/nix-community/nixos-generators/issues/83 --- test/test.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/test.nix b/test/test.nix index 3925169..19155fb 100644 --- a/test/test.nix +++ b/test/test.nix @@ -8,6 +8,10 @@ services.malobeo-tasklist.enable = true; environment.systemPackages = [ pkgs.curl ]; + + nix.settings = { + system-features = [ "nixos-test" "benchmark" "big-parallel" "kvm" ]; + }; }; };