From d11d6d7f78fe329a1e473643568b0c0649a470a8 Mon Sep 17 00:00:00 2001 From: John Lancaster <32917998+jsl12@users.noreply.github.com> Date: Mon, 10 Nov 2025 08:09:42 -0600 Subject: [PATCH] nixgl options rename to silence warnings --- homeManagerModules/ghostty.nix | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/homeManagerModules/ghostty.nix b/homeManagerModules/ghostty.nix index dc09086..f97a687 100644 --- a/homeManagerModules/ghostty.nix +++ b/homeManagerModules/ghostty.nix @@ -5,9 +5,11 @@ }; # nixGL is now provided as a flake input - nixGL.packages = nixgl.packages.${pkgs.system}; - nixGL.defaultWrapper = "mesa"; - nixGL.installScripts = [ "mesa" ]; + targets.genericLinux.nixGL = { + packages = nixgl.packages.${pkgs.system}; + defaultWrapper = "mesa"; + installScripts = [ "mesa" ]; + }; programs.ghostty = lib.mkIf (config.enableShell && config.graphical.ghostty) { enable = true;