nixos/firejail: Fix order of extrsArgs before profile wrappedBinaries option
This commit is contained in:
parent
c9302fdce0
commit
9a30f53ffe
@ -17,8 +17,8 @@ let
|
|||||||
then value
|
then value
|
||||||
else { executable = value; profile = null; extraArgs = []; };
|
else { executable = value; profile = null; extraArgs = []; };
|
||||||
args = lib.escapeShellArgs (
|
args = lib.escapeShellArgs (
|
||||||
(optional (opts.profile != null) "--profile=${toString opts.profile}")
|
opts.extraArgs
|
||||||
++ opts.extraArgs
|
++ (optional (opts.profile != null) "--profile=${toString opts.profile}")
|
||||||
);
|
);
|
||||||
in
|
in
|
||||||
''
|
''
|
||||||
|
Loading…
Reference in New Issue
Block a user