1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-14 10:43:39 +02:00

swayidle: Fix position of extraArgs (#2932)

This commit is contained in:
arjan-s 2022-05-03 19:20:46 +02:00 committed by GitHub
parent 0304f0f58b
commit ac722cddf4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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 ];