summary refs log tree commit diff
path: root/nixos/modules/installer/cd-dvd/iso-image.nix
diff options
context:
space:
mode:
authorSamuel Dionne-Riel <samuel@dionne-riel.com>2023-08-14 17:02:43 -0400
committerSamuel Dionne-Riel <samuel@dionne-riel.com>2023-09-06 14:09:02 -0400
commitd64b03a339138394917e9ce224895077560918ff (patch)
treee8bdcc3a1924e32bc9334e3d97e03fd39d678fac /nixos/modules/installer/cd-dvd/iso-image.nix
parentdd936c21d78298e9e693847d522d404f412f9e0b (diff)
downloadnixpkgs-d64b03a339138394917e9ce224895077560918ff.tar
nixpkgs-d64b03a339138394917e9ce224895077560918ff.tar.gz
nixpkgs-d64b03a339138394917e9ce224895077560918ff.tar.bz2
nixpkgs-d64b03a339138394917e9ce224895077560918ff.tar.lz
nixpkgs-d64b03a339138394917e9ce224895077560918ff.tar.xz
nixpkgs-d64b03a339138394917e9ce224895077560918ff.tar.zst
nixpkgs-d64b03a339138394917e9ce224895077560918ff.zip
nixos/iso-image: Re-enable graphics mode
Which ***anyway*** was not disabled correctly. Following changes will
actually disable it.

What this did was disable the "themed" menu driver, but still continued
relying on the gfxterm infra, which in itself is why things were ugly
and weird.
Diffstat (limited to 'nixos/modules/installer/cd-dvd/iso-image.nix')
-rw-r--r--nixos/modules/installer/cd-dvd/iso-image.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/installer/cd-dvd/iso-image.nix b/nixos/modules/installer/cd-dvd/iso-image.nix
index 38e0f1755e7..2be7020cb8b 100644
--- a/nixos/modules/installer/cd-dvd/iso-image.nix
+++ b/nixos/modules/installer/cd-dvd/iso-image.nix
@@ -713,7 +713,7 @@ in
     };
 
     isoImage.graphicalGrub = mkOption {
-      default = false;
+      default = true;
       type = types.bool;
       example = true;
       description = lib.mdDoc ''