aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/shell.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/shell.nix b/lib/shell.nix
index d7d15fa..fd90034 100644
--- a/lib/shell.nix
+++ b/lib/shell.nix
@@ -6,7 +6,7 @@ with pkgs.lib;
6 6
7let 7let
8 mapAttrsToLines = mapping: attrs: 8 mapAttrsToLines = mapping: attrs:
9 pkgs.lib.concatStringsSep "\n" (pkgs.lib.mapAttrsToList mapping attrs); 9 concatStringsSep "\n" (mapAttrsToList mapping attrs);
10 10
11 fmt = rec { 11 fmt = rec {
12 codeBlock = code: text: ''"\e[${code}m"${text}"\e[0m"''; 12 codeBlock = code: text: ''"\e[${code}m"${text}"\e[0m"'';