mirror of
https://github.com/nix-community/home-manager.git
synced 2026-01-11 17:39:37 +08:00
swayidle: Fix position of extraArgs (#2932)
This commit is contained in:
@@ -15,8 +15,8 @@ let
|
||||
|
||||
mkEvent = e: [ e.event (escapeShellArg e.command) ];
|
||||
|
||||
args = (concatMap mkTimeout cfg.timeouts) ++ (concatMap mkEvent cfg.events)
|
||||
++ cfg.extraArgs;
|
||||
args = cfg.extraArgs ++ (concatMap mkTimeout cfg.timeouts)
|
||||
++ (concatMap mkEvent cfg.events);
|
||||
|
||||
in {
|
||||
meta.maintainers = [ maintainers.c0deaddict ];
|
||||
|
||||
Reference in New Issue
Block a user