summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2024-06-05 00:13:17 +0000
committerGitHub <noreply@github.com>2024-06-05 00:13:17 +0000
commitdaadd0b7779bd5df13880b28886b1b32d2dc0bba (patch)
tree287a7a798dc0f3b36dfa9b140f4ae6632b034751 /doc
parentbd6942679cd7b7d8e2069d7efff37c23a12bdc9e (diff)
parentfa603de2526591447dcd8b4471279aeeab978a97 (diff)
Merge master into haskell-updates
Diffstat (limited to 'doc')
-rw-r--r--doc/build-helpers/images/makediskimage.section.md6
1 files changed, 2 insertions, 4 deletions
diff --git a/doc/build-helpers/images/makediskimage.section.md b/doc/build-helpers/images/makediskimage.section.md
index e50479c4e83e..3edfa906aa6a 100644
--- a/doc/build-helpers/images/makediskimage.section.md
+++ b/doc/build-helpers/images/makediskimage.section.md
@@ -85,14 +85,14 @@ let
in
make-disk-image {
inherit pkgs lib;
- config = evalConfig {
+ inherit (evalConfig {
modules = [
{
fileSystems."/" = { device = "/dev/vda"; fsType = "ext4"; autoFormat = true; };
boot.grub.device = "/dev/vda";
}
];
- };
+ }) config;
format = "qcow2";
onlyNixStore = false;
partitionTableType = "legacy+gpt";
@@ -104,5 +104,3 @@ in
memSize = 2048; # Qemu VM memory size in megabytes. Defaults to 1024M.
}
```
-
-