We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3784aa6 commit 6e976d3Copy full SHA for 6e976d3
nixos-modules/microvm/options.nix
@@ -491,7 +491,7 @@ in
491
graphics.backend = mkOption {
492
type = types.enum [ "gtk" "cocoa" ];
493
default = if pkgs.stdenv.hostPlatform.isDarwin then "cocoa" else "gtk";
494
- defaultText = lib.literalExpression ``if pkgs.stdenv.hostPlatform.isDarwin then "cocoa" else "gtk"``;
+ defaultText = lib.literalExpression ''if pkgs.stdenv.hostPlatform.isDarwin then "cocoa" else "gtk"'';
495
description = ''
496
QEMU display backend to use when `graphics.enable` is true.
497
0 commit comments