From 97fd1af40f8325b0c754c708971a39bec7c88eb5 Mon Sep 17 00:00:00 2001 From: Alexander Bantyev Date: Sun, 14 Mar 2021 02:22:15 +0300 Subject: [PATCH] repl: clean up --- modules/workspace/zsh.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/workspace/zsh.nix b/modules/workspace/zsh.nix index fc1bb3d..d269fc8 100755 --- a/modules/workspace/zsh.nix +++ b/modules/workspace/zsh.nix @@ -101,6 +101,7 @@ TEMP="$(mktemp --suffix=.nix)" echo "let self = builtins.getFlake \"$source\"; in self // self.legacyPackages.\''${builtins.currentSystem} or { } // self.packages.\''${builtins.currentSystem} or { }" > "$TEMP" nix repl "$TEMP" + rm "$TEMP" }