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

kakoune: prepend extra configuration with newline (#870)

Fixes #869
This commit is contained in:
Robert Helgesson 2019-10-23 13:39:52 +02:00 committed by Matthieu Coudron
parent 410f573226
commit 1b987952b5

View File

@ -540,6 +540,7 @@ let
in
pkgs.writeText "kakrc" (
optionalString (cfg.config != null) cfgStr
+ "\n"
+ cfg.extraConfig
);