summaryrefslogtreecommitdiff
path: root/shell.nix
diff options
context:
space:
mode:
Diffstat (limited to 'shell.nix')
-rw-r--r--shell.nix21
1 files changed, 0 insertions, 21 deletions
diff --git a/shell.nix b/shell.nix
deleted file mode 100644
index 24a6e0a9..00000000
--- a/shell.nix
+++ /dev/null
@@ -1,21 +0,0 @@
-{ kversion ? "linux_5_15"
-, pkgs ? import <nixpkgs> {} }:
-
-with pkgs;
-
-let
- tools = pkgs.callPackage ./default.nix { doCheck = false ;} ;
-in
-mkShell {
- buildInputs = [
- linuxKernel.packages.${kversion}.perf
- gdb
- # lsp code completion in neovim/emacs
- clangd
- rust-analyzer
- rnix-lsp
- ];
- inputsFrom = [
- tools
- ];
-}