about summary refs log tree commit diff
path: root/nixos/modules/installer
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
parentdd936c21d78298e9e693847d522d404f412f9e0b (diff)
downloadnixlib-d64b03a339138394917e9ce224895077560918ff.tar
nixlib-d64b03a339138394917e9ce224895077560918ff.tar.gz
nixlib-d64b03a339138394917e9ce224895077560918ff.tar.bz2
nixlib-d64b03a339138394917e9ce224895077560918ff.tar.lz
nixlib-d64b03a339138394917e9ce224895077560918ff.tar.xz
nixlib-d64b03a339138394917e9ce224895077560918ff.tar.zst
nixlib-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')
-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 38e0f1755e70..2be7020cb8b2 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 ''