From 5dc4d57d7e22ba16053dd4e2f27bd7e66bc5cd47 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Madeleine=20Sydney=20=C5=9Alaga?= Date: Tue, 31 Mar 2026 12:54:22 -0600 Subject: [PATCH] fix(emacs): coerce makeWrapper args --- modules/home/emacs.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/modules/home/emacs.nix b/modules/home/emacs.nix index 5b54cf6..3836680 100644 --- a/modules/home/emacs.nix +++ b/modules/home/emacs.nix @@ -56,7 +56,12 @@ in { Extra arguments to pass to the final wrapProgram call. ''; default = []; - type = lib.types.listOf lib.types.str; + type = with lib.types; + listOf + (coercedTo + (oneOf [str package]) + builtins.toString + str); apply = lib.escapeShellArgs; }; };