nixos/firejail: Fix order of extrsArgs before profile wrappedBinaries option

This commit is contained in:
Jonas Heinrich
2022-03-03 21:35:37 -05:00
committed by Yt
parent c9302fdce0
commit 9a30f53ffe
+2 -2
View File
@@ -17,8 +17,8 @@ let
then value
else { executable = value; profile = null; extraArgs = []; };
args = lib.escapeShellArgs (
(optional (opts.profile != null) "--profile=${toString opts.profile}")
++ opts.extraArgs
opts.extraArgs
++ (optional (opts.profile != null) "--profile=${toString opts.profile}")
);
in
''