about summary refs log tree commit diff
path: root/nixos/tests/wine.nix
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2022-01-26 17:14:23 +0100
committerMartin Weinelt <hexa@darmstadt.ccc.de>2022-01-26 17:14:51 +0100
commite779f3dee4640e44c2e5995afc1ee0559e045ec5 (patch)
treec20c9a59d5d3687f629558ee735c93cbfa3d4d32 /nixos/tests/wine.nix
parente722007bf05802573b41701c49da6c8814878171 (diff)
nixos/tests/wine: fix disksize type
Diffstat (limited to 'nixos/tests/wine.nix')
-rw-r--r--nixos/tests/wine.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/tests/wine.nix b/nixos/tests/wine.nix
index 18ad759b5515e..cc449864c7622 100644
--- a/nixos/tests/wine.nix
+++ b/nixos/tests/wine.nix
@@ -17,7 +17,7 @@ let
 
       machine = { pkgs, ... }: {
         environment.systemPackages = [ pkgs."${packageSet}"."${variant}" ];
-        virtualisation.diskSize = "800";
+        virtualisation.diskSize = 800;
       };
 
       testScript = ''