commit | dd7a5e1540533413e7dae6a05f233659894a0ece | [log] [tgz] |
---|---|---|
author | Skyler Grey <skyler3665@gmail.com> | Sun Sep 04 21:24:15 2022 +0100 |
committer | Skyler Grey <skyler3665@gmail.com> | Sun Sep 04 21:39:50 2022 +0100 |
tree | f04e4aed69e56ef8106035da4931e54bab5371ec | |
parent | 59e2ebecc100dc3587a788be003f0c24f9b48ea6 [diff] [blame] |
Add sd as s - sd is a simple alternative to sed - as I want to use ianthehenry's `sd`, I'll use `s` rather than `sd` as the command, moving it via an overlay
diff --git a/modules/utilities.nix b/modules/utilities.nix index 87b8657..99e1253 100644 --- a/modules/utilities.nix +++ b/modules/utilities.nix
@@ -3,6 +3,11 @@ # them config.environment.systemPackages = with pkgs; [ jq + (sd.overrideAttrs (oldAttrs: { + postInstall = '' + mv $out/bin/sd $out/bin/s + ''; + })) lnav ];