nixos/firejail: Fix order of extrsArgs before profile wrappedBinaries option
This commit is contained in:
parent
c9302fdce0
commit
9a30f53ffe
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
''
|
||||
|
|
Loading…
Reference in a new issue