about summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorValentin Gagarin <valentin.gagarin@tweag.io>2024-02-09 15:37:35 +0100
committerGitHub <noreply@github.com>2024-02-09 15:37:35 +0100
commite385b36a323c434942a2e82da1ba208e63892c8e (patch)
tree6fc3f42453dc3a522fcb32c47ccf90ed3cfc4505 /nixos
parent2565ab7b53ae6966bd08e68203a89645961849b3 (diff)
parent85f4b05e39b55de136ff04745059ff250451ad9c (diff)
Merge pull request #287438 from fricklerhandwerk/qemu-docs-link
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/virtualisation/qemu-vm.nix6
1 files changed, 5 insertions, 1 deletions
diff --git a/nixos/modules/virtualisation/qemu-vm.nix b/nixos/modules/virtualisation/qemu-vm.nix
index 523cfa023b35b..57e2c38301a08 100644
--- a/nixos/modules/virtualisation/qemu-vm.nix
+++ b/nixos/modules/virtualisation/qemu-vm.nix
@@ -701,7 +701,10 @@ in
           type = types.listOf types.str;
           default = [];
           example = [ "-vga std" ];
-          description = lib.mdDoc "Options passed to QEMU.";
+          description = lib.mdDoc ''
+            Options passed to QEMU.
+            See [QEMU User Documentation](https://www.qemu.org/docs/master/system/qemu-manpage) for a complete list.
+          '';
         };
 
       consoles = mkOption {
@@ -732,6 +735,7 @@ in
           description = lib.mdDoc ''
             Networking-related command-line options that should be passed to qemu.
             The default is to use userspace networking (SLiRP).
+            See the [QEMU Wiki on Networking](https://wiki.qemu.org/Documentation/Networking) for details.
 
             If you override this option, be advised to keep
             ''${QEMU_NET_OPTS:+,$QEMU_NET_OPTS} (as seen in the example)