From 02fa077d37aac5c8c86836db1870e0a8b8199e9c Mon Sep 17 00:00:00 2001 From: Zynh Ludwig Date: Sat, 17 Aug 2024 08:15:35 -0700 Subject: [PATCH] writeXrandrScriptBin: inherit output --- pkgs/writeXrandrScriptBin.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/writeXrandrScriptBin.nix b/pkgs/writeXrandrScriptBin.nix index 47f04c1..d5f8002 100644 --- a/pkgs/writeXrandrScriptBin.nix +++ b/pkgs/writeXrandrScriptBin.nix @@ -14,7 +14,7 @@ let getArgList = output: config: (escapeShellArgs (lists.flatten [ - (toGNUCommandLine { } { "--output" = output; }) + (toGNUCommandLine { } { inherit output; }) (lists.optional (isPrimary config) "--primary") (toGNUCommandLine { } config) ]));