From e4158c86771f5612fe9860df077b1f96213720e8 Mon Sep 17 00:00:00 2001 From: catvayor Date: Sun, 23 Jun 2024 12:18:10 +0200 Subject: [PATCH] no need for nixos-shell in the end --- shell.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shell.nix b/shell.nix index b21d197..eaa9a72 100644 --- a/shell.nix +++ b/shell.nix @@ -1,4 +1,4 @@ { pkgs ? (import ) { }, lib ? pkgs.lib}: pkgs.mkShell { - buildInputs = with pkgs; [ cargo rustc rustfmt nixos-shell ]; + buildInputs = with pkgs; [ cargo rustc rustfmt ]; }