about summary refs log tree commit diff
path: root/nixos/tests/misc.nix
diff options
context:
space:
mode:
authorMaciej Krüger <mkg20001@gmail.com>2021-02-14 12:23:50 +0100
committerMaciej Krüger <mkg20001@gmail.com>2021-02-14 12:23:50 +0100
commit59eb6d3ee331146bb955922df4dea1ba67487005 (patch)
treee887b59463998db7b4c7c6eb98a113b8050df5bd /nixos/tests/misc.nix
parent45b8e831287dcd40dff15b9da93bf8626d32d994 (diff)
nixosTests.*: update to use virtualisation.fileSystems
Diffstat (limited to 'nixos/tests/misc.nix')
-rw-r--r--nixos/tests/misc.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/tests/misc.nix b/nixos/tests/misc.nix
index fda2e60a41b6f..fb19b7060562f 100644
--- a/nixos/tests/misc.nix
+++ b/nixos/tests/misc.nix
@@ -16,7 +16,7 @@ import ./make-test-python.nix ({ pkgs, ...} : rec {
       environment.variables.EDITOR = mkOverride 0 "emacs";
       documentation.nixos.enable = mkOverride 0 true;
       systemd.tmpfiles.rules = [ "d /tmp 1777 root root 10d" ];
-      fileSystems = mkVMOverride { "/tmp2" =
+      virtualisation.fileSystems = { "/tmp2" =
         { fsType = "tmpfs";
           options = [ "mode=1777" "noauto" ];
         };