summary refs log tree commit diff
path: root/nixos/modules/installer/cd-dvd
diff options
context:
space:
mode:
authorJan Tojnar <jtojnar@gmail.com>2023-08-12 19:30:15 +0200
committerJan Tojnar <jtojnar@gmail.com>2023-08-12 19:30:49 +0200
commit08d242047cc34c9c624c8ae507211671cf45f464 (patch)
tree7c80e1a18bd3a0868d8050e64359b14f96ab1902 /nixos/modules/installer/cd-dvd
parent7fc2ab37fa7287822bc6e724464bde781bec1b17 (diff)
downloadnixpkgs-08d242047cc34c9c624c8ae507211671cf45f464.tar
nixpkgs-08d242047cc34c9c624c8ae507211671cf45f464.tar.gz
nixpkgs-08d242047cc34c9c624c8ae507211671cf45f464.tar.bz2
nixpkgs-08d242047cc34c9c624c8ae507211671cf45f464.tar.lz
nixpkgs-08d242047cc34c9c624c8ae507211671cf45f464.tar.xz
nixpkgs-08d242047cc34c9c624c8ae507211671cf45f464.tar.zst
nixpkgs-08d242047cc34c9c624c8ae507211671cf45f464.zip
iso_gnome: Fix evaluation
`qt.enable` option requires `qt.style` to be set.
Previously, this was set in GNOME module but it has been removed
in 622745942bc7b7cc056bfbb0bc6004dd823fa4f5
Diffstat (limited to 'nixos/modules/installer/cd-dvd')
-rw-r--r--nixos/modules/installer/cd-dvd/installation-cd-graphical-calamares-gnome.nix6
1 files changed, 0 insertions, 6 deletions
diff --git a/nixos/modules/installer/cd-dvd/installation-cd-graphical-calamares-gnome.nix b/nixos/modules/installer/cd-dvd/installation-cd-graphical-calamares-gnome.nix
index 12feb2d96ec..d1a4c27432c 100644
--- a/nixos/modules/installer/cd-dvd/installation-cd-graphical-calamares-gnome.nix
+++ b/nixos/modules/installer/cd-dvd/installation-cd-graphical-calamares-gnome.nix
@@ -30,12 +30,6 @@
     enable = true;
   };
 
-  # Theme calamares with GNOME theme
-  qt = {
-    enable = true;
-    platformTheme = "gnome";
-  };
-
   # Fix scaling for calamares on wayland
   environment.variables = {
     QT_QPA_PLATFORM = "$([[ $XDG_SESSION_TYPE = \"wayland\" ]] && echo \"wayland\")";