mirror of
https://github.com/nix-community/home-manager
synced 2024-11-30 06:59:45 +01:00
i3-sway: Empty set argument was passed to wrong function (#2819)
This would give the error "attempt to call something which is not a function but a list" given that `optionals a b` returns a list. `indent` is the one taking this empty set as second argument.
This commit is contained in:
parent
80b4360678
commit
48a1584d8b
1 changed files with 1 additions and 1 deletions
|
@ -123,7 +123,7 @@ rec {
|
||||||
(optionalString (colors.bindingMode != null)
|
(optionalString (colors.bindingMode != null)
|
||||||
"binding_mode ${barColorSetStr colors.bindingMode}")
|
"binding_mode ${barColorSetStr colors.bindingMode}")
|
||||||
"}"
|
"}"
|
||||||
])) { })
|
]) { }))
|
||||||
extraConfig
|
extraConfig
|
||||||
])) { })
|
])) { })
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue