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
+353 -354
View File
File diff suppressed because it is too large Load Diff
+1 -2
View File
@@ -1356,7 +1356,6 @@ in
This file makes aliases in ./generated/assets/aliases.conf system-wide available
#+BEGIN_SRC nix :tangle generated/modules/traveldroid/system/aliases.nix :noweb yes :mkdirp yes :eval never
{ lib, flakeRoot,... }:
let
aliasFile = "${flakeRoot}/generated/assets/aliases.conf";
@@ -1369,7 +1368,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;
@@ -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;