about summary refs log tree commit diff stats
path: root/modules
diff options
context:
space:
mode:
authorBenedikt Peetz <benedikt.peetz@b-peetz.de>2024-10-18 23:30:09 +0200
committerBenedikt Peetz <benedikt.peetz@b-peetz.de>2024-10-18 23:30:09 +0200
commit41fc2b38dd1ea069e74bb64ec17162149958ff0a (patch)
tree29991fadb88747c80109f7cb8024cfec049a1519 /modules
parentbuild(update.sh): Update Firefox ext. updater path to new `home.legacy` (diff)
downloadnixos-config-41fc2b38dd1ea069e74bb64ec17162149958ff0a.tar.gz
nixos-config-41fc2b38dd1ea069e74bb64ec17162149958ff0a.zip
fix(modules/by-name-overlay.nix): Add missing `ESC`s to re-implemented `warn`
Diffstat (limited to 'modules')
-rw-r--r--modules/by-name-overlay.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/by-name-overlay.nix b/modules/by-name-overlay.nix
index b96c1d25..4349e112 100644
--- a/modules/by-name-overlay.nix
+++ b/modules/by-name-overlay.nix
@@ -16,7 +16,7 @@
       msg: v:
       # `builtins.warn` requires a string message, so we enforce that in our implementation, so that callers aren't accidentally incompatible with newer Nix versions.
         assert builtins.isString msg;
-          builtins.trace "[1;35mevaluation warning:[0m ${msg}" v
+          builtins.trace "evaluation warning: ${msg}" v
     );
   # Same thing as flatten.
   mapAttrsToList = f: attrs: