Regenerated

This commit is contained in:
2026-04-14 14:10:20 +02:00
parent 589c1e96b4
commit 4effd4c8f2
3 changed files with 355 additions and 358 deletions
@@ -1,6 +1,5 @@
# --- This file has been auto-generated. For permanent changes alter the appropriate block in the README.org. ---
{ lib, flakeRoot,... }:
let
aliasFile = "${flakeRoot}/generated/assets/aliases.conf";
@@ -13,7 +12,7 @@ let
# Parse "alias name='value'"
parseAlias = line:
let
match = builtins.match ''alias ([^=]+)='(.*)''' line;
match = builtins.match "alias ([^=]+)='(.*)'" line;
in
if match == null then null else {
name = builtins.elemAt match 0;