about summary refs log tree commit diff
path: root/nixos/modules
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2024-06-18 01:43:38 +0200
committerGitHub <noreply@github.com>2024-06-18 01:43:38 +0200
commit3f170d4126a52e241f4333a2dba9e3f46d75ae37 (patch)
tree8577a89638aff2382d49cc31cc101624cf0c932f /nixos/modules
parentccc54c859fae1cf2e45f38feab3419860e5c19ac (diff)
parent131ef6d2ed52eb3a670f50d1f33b1307230286f8 (diff)
Merge pull request #318348 from SuperSandro2000/nox-gjs
nixos/no-x-libs: fix gjs
Diffstat (limited to 'nixos/modules')
-rw-r--r--nixos/modules/config/no-x-libs.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/config/no-x-libs.nix b/nixos/modules/config/no-x-libs.nix
index 87b6fea92ba4a..930e57dbde5bb 100644
--- a/nixos/modules/config/no-x-libs.nix
+++ b/nixos/modules/config/no-x-libs.nix
@@ -39,7 +39,7 @@ with lib;
       # dep of graphviz, libXpm is optional for Xpm support
       gd = super.gd.override { withXorg = false; };
       ghostscript = super.ghostscript.override { cupsSupport = false; x11Support = false; };
-      gjs = super.gjs.overrideAttrs { doCheck = false; installTests = false; }; # avoid test dependency on gtk3
+      gjs = (super.gjs.override { installTests = false; }).overrideAttrs { doCheck = false; }; # avoid test dependency on gtk3
       gobject-introspection = super.gobject-introspection.override { x11Support = false; };
       gpg-tui = super.gpg-tui.override { x11Support = false; };
       gpsd = super.gpsd.override { guiSupport = false; };