Regenerated
This commit is contained in:
+353
-354
File diff suppressed because it is too large
Load Diff
+1
-2
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user