diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2022-06-07 13:59:36 +0200 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2022-06-07 14:27:10 +0200 |
commit | 0f8754cd30ecbcfa49304d74853c3c0bbdd65d45 (patch) | |
tree | e9d6f51f739f6d7a6bcf3b7e089c0036faf28ee0 /tests/github-flakes.nix | |
parent | 5a9d83aa59df15ea9e289157518f64818036e020 (diff) |
Fix 22.05 eval warnings
Diffstat (limited to 'tests/github-flakes.nix')
-rw-r--r-- | tests/github-flakes.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/github-flakes.nix b/tests/github-flakes.nix index 7ac397d81..ddae6a21c 100644 --- a/tests/github-flakes.nix +++ b/tests/github-flakes.nix @@ -103,7 +103,7 @@ makeTest ( { config, lib, pkgs, nodes, ... }: { virtualisation.writableStore = true; virtualisation.diskSize = 2048; - virtualisation.pathsInNixDB = [ pkgs.hello pkgs.fuse ]; + virtualisation.additionalPaths = [ pkgs.hello pkgs.fuse ]; virtualisation.memorySize = 4096; nix.binaryCaches = lib.mkForce [ ]; nix.extraOptions = "experimental-features = nix-command flakes"; |