switcheroo/shell.nix
2025-04-29 17:58:38 -07:00

7 lines
110 B
Nix

{ pkgs ? import <nixpkgs> {} }: pkgs.mkShell {
buildInputs = with pkgs; [
go
just
sqlite
];
}