nixos/shell.nix

9 lines
115 B
Nix
Raw Normal View History

2024-07-21 18:22:59 +01:00
{ pkgs ? import <nixpkgs> { } }:
pkgs.mkShell
{
nativeBuildInputs = with pkgs; [
update-nix-fetchgit
];
}