mirror of
https://github.com/nix-community/nixos-generators.git
synced 2024-11-23 02:45:29 +03:00
Merge pull request #98 from dfrankland/increase-raw-size-limit
allow raw disk size to automatically increment
This commit is contained in:
commit
23143c87be
@ -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";
|
||||
});
|
||||
}
|
||||
|
@ -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";
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user