rebuilding minimised nix files

This commit is contained in:
2026-03-02 18:34:10 +01:00
parent cc784f6564
commit 4aef0ed12a
2 changed files with 301 additions and 301 deletions
+1 -1
View File
@@ -21,7 +21,7 @@ let
trim = lib.strings.trim;
# ---------- minimal INI-ish parser (sections + raw lines) ----------
readMaybe = p: if builtins.pathExists p then builtins.readFile p else "";
normalizeLine = l: trim (l`ib.replaceStrings [ "\r" ] [ "" ] l);
normalizeLine = l: trim (lib.replaceStrings [ "\r" ] [ "" ] l);
parseSections = text:
let
lines = map normalizeLine (lib.splitString "\n" text);