From d19ad35bfb749c0410714c1386a1c3f72b0cf715 Mon Sep 17 00:00:00 2001 From: Whovian9369 Date: Thu, 13 Jun 2024 23:31:30 -0400 Subject: [PATCH] Change `unnix` `sed` replacement text. --- home/pkgs_and_programs.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/home/pkgs_and_programs.nix b/home/pkgs_and_programs.nix index 0ff07e9..d21ed85 100644 --- a/home/pkgs_and_programs.nix +++ b/home/pkgs_and_programs.nix @@ -25,7 +25,7 @@ let unnix_script = pkgs.writeShellApplication { name = "unnix"; /* runtimeInputs = [ sed ]; */ - text = '' sed -r 's@/nix/store/[0-9a-z]{32}-@/<>/@g' ''; + text = '' sed -r 's@/nix/store/[0-9a-z]{32}-@//@g' ''; # Quick command to remove Nix Store paths from output. Original source: # https://trofi.github.io/posts/247-NixOS-22.05-release.html };