1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-26 16:38:34 +02:00

kakoune: Fix reference to group in hook config (#1820)

Fixes "undefined variable 'group' at .../kakoune.nix:577
This commit is contained in:
Manuel Mendez 2021-02-22 16:21:36 -05:00 committed by GitHub
parent 21952f1cab
commit 7582090eb0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -574,7 +574,7 @@ let
hookString = h:
concatStringsSep " " [
"hook"
"${optionalString (h.group != null) "-group ${group}"}"
"${optionalString (h.group != null) "-group ${h.group}"}"
"${optionalString (h.once) "-once"}"
"global"
"${h.name}"