From 5f64bcccef6d54a8fda5f70b29a3a423596c90ea Mon Sep 17 00:00:00 2001 From: Austin Horstman Date: Mon, 1 Sep 2025 23:41:15 -0500 Subject: [PATCH] hyprland: tweak submap line formatting Just want it to look a little more organized Signed-off-by: Austin Horstman --- modules/services/window-managers/hyprland.nix | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/modules/services/window-managers/hyprland.nix b/modules/services/window-managers/hyprland.nix index 49392f644..1a1caee45 100644 --- a/modules/services/window-managers/hyprland.nix +++ b/modules/services/window-managers/hyprland.nix @@ -383,11 +383,12 @@ in mkSubMap = name: attrs: '' submap = ${name} - ${lib.hm.generators.toHyprconf { - attrs = attrs.settings; - indentLevel = 1; - }} - submap = reset + ${ + lib.hm.generators.toHyprconf { + attrs = attrs.settings; + indentLevel = 0; + } + }submap = reset ''; submapsToHyprConf = lib.concatMapAttrsStringSep "\n" mkSubMap;