summary refs log tree commit diff
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
parente722007bf05802573b41701c49da6c8814878171 (diff)
downloadnixpkgs-e779f3dee4640e44c2e5995afc1ee0559e045ec5.tar
nixpkgs-e779f3dee4640e44c2e5995afc1ee0559e045ec5.tar.gz
nixpkgs-e779f3dee4640e44c2e5995afc1ee0559e045ec5.tar.bz2
nixpkgs-e779f3dee4640e44c2e5995afc1ee0559e045ec5.tar.lz
nixpkgs-e779f3dee4640e44c2e5995afc1ee0559e045ec5.tar.xz
nixpkgs-e779f3dee4640e44c2e5995afc1ee0559e045ec5.tar.zst
nixpkgs-e779f3dee4640e44c2e5995afc1ee0559e045ec5.zip
nixos/tests/wine: fix disksize type
-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 18ad759b551..cc449864c76 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 = ''