From d02f8b17efd60811be6d268e7ad6b65354c496d8 Mon Sep 17 00:00:00 2001 From: Robert Helgesson Date: Fri, 13 Jan 2017 01:12:26 +0100 Subject: [PATCH] xresources: add newline to end of file --- modules/xresources.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/xresources.nix b/modules/xresources.nix index 43e8ff1c..61efd3d9 100644 --- a/modules/xresources.nix +++ b/modules/xresources.nix @@ -38,6 +38,6 @@ in home.file.".Xresources".text = concatStringsSep "\n" ( mapAttrsToList formatLine cfg.properties - ); + ) + "\n"; }; }