windowsIso: Win10_21H2 -> Win11_22H2

pull/15/head
Astro 2023-05-23 21:48:23 +02:00
parent 79c1685f89
commit 598b311215
3 changed files with 10 additions and 10 deletions

View File

@ -15,7 +15,7 @@
, impureShellCommands ? [] , impureShellCommands ? []
, driveLetter ? "D:" , driveLetter ? "D:"
, efi ? true , efi ? true
, imageSelection ? "Windows 10 Pro" , imageSelection ? "Windows 11 Pro N"
, ... , ...
}: }:
@ -299,7 +299,7 @@ let
</component> </component>
</settings> </settings>
<cpi:offlineImage cpi:source="wim:c:/wim/windows-10/install.wim#${imageSelection}" xmlns:cpi="urn:schemas-microsoft-com:cpi" /> <cpi:offlineImage cpi:source="wim:c:/wim/windows-11/install.wim#${imageSelection}" xmlns:cpi="urn:schemas-microsoft-com:cpi" />
</unattend> </unattend>
''; '';

View File

@ -19,9 +19,9 @@ wfvm.makeWindowsImage {
# Custom base iso # Custom base iso
# windowsImage = pkgs.requireFile rec { # windowsImage = pkgs.requireFile rec {
# name = "Win10_21H1_English_x64.iso"; # name = "Win11_22H2_English_x64v1.iso";
# sha256 = "1sl51lnx4r6ckh5fii7m2hi15zh8fh7cf7rjgjq9kacg8hwyh4b9"; # sha256 = "08mbppsm1naf73z8fjyqkf975nbls7xj9n4fq0yp802dv1rz3whd";
# message = "Get ${name} from https://www.microsoft.com/en-us/software-download/windows10ISO"; # message = "Get disk image ${name} from https://www.microsoft.com/en-us/software-download/windows11/";
# }; # };
# impureShellCommands = [ # impureShellCommands = [
@ -70,7 +70,7 @@ wfvm.makeWindowsImage {
# License key (required) # License key (required)
# productKey = throw "Search the f* web" # productKey = throw "Search the f* web"
imageSelection = "Windows 10 Pro"; imageSelection = "Windows 11 Pro N";
# Locales # Locales

View File

@ -6,7 +6,7 @@
, installCommands ? [] , installCommands ? []
, users ? {} , users ? {}
# autounattend always installs index 1, so this default is backward-compatible # autounattend always installs index 1, so this default is backward-compatible
, imageSelection ? "Windows 10 Pro" , imageSelection ? "Windows 11 Pro N"
, efi ? true , efi ? true
, ... , ...
}@attrs: }@attrs:
@ -36,9 +36,9 @@ let
); );
windowsIso = if windowsImage != null then windowsImage else pkgs.requireFile rec { windowsIso = if windowsImage != null then windowsImage else pkgs.requireFile rec {
name = "Win10_21H2_English_x64.iso"; name = "Win11_22H2_English_x64v1.iso";
sha256 = "0kr3m0bjy086whcbssagsshdxj6lffcz7wmvbh50zhrkxgq3hrbz"; sha256 = "08mbppsm1naf73z8fjyqkf975nbls7xj9n4fq0yp802dv1rz3whd";
message = "Get ${name} from https://www.microsoft.com/en-us/software-download/windows10ISO"; message = "Get disk image ${name} from https://www.microsoft.com/en-us/software-download/windows11/";
}; };
virtioWinIso = pkgs.fetchurl { virtioWinIso = pkgs.fetchurl {