mirror of
https://github.com/zoriya/blog.git
synced 2025-12-06 06:26:10 +00:00
9 lines
102 B
Nix
9 lines
102 B
Nix
{pkgs ? import <nixpkgs> {}}:
|
|
pkgs.mkShell {
|
|
packages = with pkgs; [
|
|
bun
|
|
go
|
|
hurl
|
|
];
|
|
}
|