Skip to content

Commit 6e976d3

Browse files
Fix syntax
1 parent 3784aa6 commit 6e976d3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nixos-modules/microvm/options.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -491,7 +491,7 @@ in
491491
graphics.backend = mkOption {
492492
type = types.enum [ "gtk" "cocoa" ];
493493
default = if pkgs.stdenv.hostPlatform.isDarwin then "cocoa" else "gtk";
494-
defaultText = lib.literalExpression ``if pkgs.stdenv.hostPlatform.isDarwin then "cocoa" else "gtk"``;
494+
defaultText = lib.literalExpression ''if pkgs.stdenv.hostPlatform.isDarwin then "cocoa" else "gtk"'';
495495
description = ''
496496
QEMU display backend to use when `graphics.enable` is true.
497497

0 commit comments

Comments
 (0)