From e811c7c5d87059cb93b6548109fcafb3268a3af1 Mon Sep 17 00:00:00 2001 From: sb10q Date: Tue, 11 Jun 2024 13:14:36 +0800 Subject: [PATCH] README: windows 11 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7792f8a..ee1d431 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ WFVM A Nix library to create and manage virtual machines running Windows, a medieval operating system found on most computers in 2020. The F stands for "Functional" or a four-letter word of your choice. * Reproducible - everything runs in the Nix sandbox with no tricks. -* Fully automatic, parameterizable Windows 10 installation. +* Fully automatic, parameterizable Windows 11 installation. * Uses QEMU with KVM. * Supports incremental installation (using "layers") of additional software via QEMU copy-on-write backing chains. For example, ``wfvm.makeWindowsImage { installCommands = [ wfvm.layers.anaconda3 ]; };`` gives you a VM image with Anaconda3 installed, and ``wfvm.makeWindowsImage { installCommands = [ wfvm.layers.anaconda3 wfvm.layers.msys2 ]; };`` gives you one with both Anaconda3 and MSYS2 installed. The base Windows installation and the Anaconda3 data are shared between both images, and only the MSYS2 installation is performed when building the second image after the first one has been built. * Included layers: Anaconda3, a software installer chock full of bugs that pretends to be a package manager, Visual Studio, a spamming system for Microsoft accounts that includes a compiler, and MSYS2, which is the only sane component in the whole lot.