diff --git a/modules/programs/zathura.nix b/modules/programs/zathura.nix index 62523698..b870e6aa 100644 --- a/modules/programs/zathura.nix +++ b/modules/programs/zathura.nix @@ -48,8 +48,9 @@ in config = mkIf cfg.enable { home.packages = [ pkgs.zathura ]; xdg.configFile."zathura/zathurarc".text = - concatStringsSep "\n" ([] - ++ (optional (cfg.extraConfig != "") cfg.extraConfig) - ++ (optionals (cfg.options != null) (mapAttrsToList formatLine cfg.options))) + "\n"; + concatStringsSep "\n" ([] + ++ (optional (cfg.extraConfig != "") cfg.extraConfig) + ++ (optionals (cfg.options != null) (mapAttrsToList formatLine cfg.options)) + ) + "\n"; }; }