From 3f2ec3c3e5039681a3ef80e1355e79778b77b66d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20Av=C3=A9?= Date: Sat, 1 Jun 2024 16:59:35 +0200 Subject: [PATCH] $(date) --- NixOS/modules/zsh/config.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NixOS/modules/zsh/config.nix b/NixOS/modules/zsh/config.nix index 838fc60..322b7bf 100644 --- a/NixOS/modules/zsh/config.nix +++ b/NixOS/modules/zsh/config.nix @@ -75,7 +75,7 @@ mvr = "rsync --archive -hh --partial --info = stats1,progress2 --modify-window = 1 --remove-source-files"; rg = "rg -i --colors 'match:bg:yellow' --colors 'match:fg:black' --colors 'match:style:nobold' --colors 'path:fg:green' --colors 'path:style:bold' --colors 'line:fg:yellow' --colors 'line:style:bold'"; ag = "rg -i --colors 'match:bg:yellow' --colors 'match:fg:black' --colors 'match:style:nobold' --colors 'path:fg:green' --colors 'path:style:bold' --colors 'line:fg:yellow' --colors 'line:style:bold'"; - push = "git add -A && git commit -m \"`date`\" && git push"; + push = "git add -A && git commit -m '$(date)' && git push"; reset = "tput reset"; }; history.size = 10000000;