Merge pull request #98 from dfrankland/increase-raw-size-limit

allow raw disk size to automatically increment
This commit is contained in:
Lassulus 2021-05-22 07:02:40 +02:00 committed by GitHub
commit 23143c87be
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -11,7 +11,7 @@
system.build.raw = lib.mkOverride 999 (import "${toString modulesPath}/../lib/make-disk-image.nix" {
inherit lib config pkgs;
partitionTableType = "efi";
diskSize = 2048;
diskSize = "auto";
format = "raw";
});
}

View File

@ -17,7 +17,7 @@
system.build.raw = import "${toString modulesPath}/../lib/make-disk-image.nix" {
inherit lib config pkgs;
diskSize = 2048;
diskSize = "auto";
format = "raw";
};