summary refs log tree commit diff
path: root/release
diff options
context:
space:
mode:
authorAlyssa Ross <hi@alyssa.is>2023-06-26 07:44:44 +0000
committerAlyssa Ross <hi@alyssa.is>2023-06-26 07:45:52 +0000
commit430f1b6347e2daa0a34fa12c6c2bead9eb68cd41 (patch)
treead5d49d60ddf476533ed2c8ec0784c62cc517dcd /release
parente2b97282d815171b2af47ea6fbeaeaef63510687 (diff)
downloadspectrum-430f1b6347e2daa0a34fa12c6c2bead9eb68cd41.tar
spectrum-430f1b6347e2daa0a34fa12c6c2bead9eb68cd41.tar.gz
spectrum-430f1b6347e2daa0a34fa12c6c2bead9eb68cd41.tar.bz2
spectrum-430f1b6347e2daa0a34fa12c6c2bead9eb68cd41.tar.lz
spectrum-430f1b6347e2daa0a34fa12c6c2bead9eb68cd41.tar.xz
spectrum-430f1b6347e2daa0a34fa12c6c2bead9eb68cd41.tar.zst
spectrum-430f1b6347e2daa0a34fa12c6c2bead9eb68cd41.zip
release/installer: fullscreen eos-installer window
Previously, it would be stuck in the top left corner, at a static
size.

Signed-off-by: Alyssa Ross <hi@alyssa.is>
Diffstat (limited to 'release')
-rw-r--r--release/installer/configuration.nix6
1 files changed, 5 insertions, 1 deletions
diff --git a/release/installer/configuration.nix b/release/installer/configuration.nix
index 745a594..8dd4a43 100644
--- a/release/installer/configuration.nix
+++ b/release/installer/configuration.nix
@@ -1,5 +1,5 @@
 # SPDX-License-Identifier: MIT
-# SPDX-FileCopyrightText: 2021-2022 Alyssa Ross <hi@alyssa.is>
+# SPDX-FileCopyrightText: 2021-2023 Alyssa Ross <hi@alyssa.is>
 
 { lib, modulesPath, pkgs, ... }:
 
@@ -33,6 +33,10 @@ in
   services.cage.enable = true;
   services.cage.program =
     "${pkgs.callPackage ./app {}}/bin/gnome-image-installer";
+
+  # Force eos-installer to stop artificially constraining its size.
+  systemd.services.cage-tty1.environment.GIS_SMALL_SCREEN = "1";
+
   users.users.demo = { group = "demo"; isSystemUser = true; };
   users.groups.demo = {};
   security.polkit.extraConfig = readFile ./seat.rules;