From e30e731d617db12ea847b7db05140577686ce8d5 Mon Sep 17 00:00:00 2001 From: Sam Date: Sun, 21 Jul 2024 18:22:59 +0100 Subject: [PATCH] Added shell.nix to nixos config --- shell.nix | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 shell.nix diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000..92b5f15 --- /dev/null +++ b/shell.nix @@ -0,0 +1,8 @@ +{ pkgs ? import { } }: + +pkgs.mkShell +{ + nativeBuildInputs = with pkgs; [ + update-nix-fetchgit + ]; +}