Added shell.nix to nixos config

This commit is contained in:
Sam 2024-07-21 18:22:59 +01:00
parent 07d19c4535
commit e30e731d61
1 changed files with 8 additions and 0 deletions

8
shell.nix Normal file
View File

@ -0,0 +1,8 @@
{ pkgs ? import <nixpkgs> { } }:
pkgs.mkShell
{
nativeBuildInputs = with pkgs; [
update-nix-fetchgit
];
}