From 19c770c16342ce2a346ff1471c06dcd4d04618a8 Mon Sep 17 00:00:00 2001 From: Christoph Schmatzler Date: Tue, 24 Mar 2026 22:36:50 +0000 Subject: [PATCH] fix --- modules/terminal.nix | 26 ++++++++++++++------------ 1 file changed, 14 insertions(+), 12 deletions(-) diff --git a/modules/terminal.nix b/modules/terminal.nix index b7137ba..50f9069 100644 --- a/modules/terminal.nix +++ b/modules/terminal.nix @@ -66,18 +66,20 @@ ''; xdg.configFile = { - "glow/glow.yml".text = '' - # style name or JSON path (default "auto") - style: "${config.xdg.configHome}/glow/rose-pine-dawn.json" - # mouse support (TUI-mode only) - mouse: false - # use pager to display markdown - pager: false - # word-wrap at width - width: 80 - # show all files, including hidden and ignored. - all: false - ''; + "glow/glow.yml".text = + lib.concatStringsSep "\n" [ + "# style name or JSON path (default \"auto\")" + "style: \"${config.xdg.configHome}/glow/rose-pine-dawn.json\"" + "# mouse support (TUI-mode only)" + "mouse: false" + "# use pager to display markdown" + "pager: false" + "# word-wrap at width" + "width: 80" + "# show all files, including hidden and ignored." + "all: false" + "" + ]; "glow/rose-pine-dawn.json".source = ./_terminal/rose-pine-dawn-glow.json; };