Files
tide/shell.nix
T
2023-09-15 23:06:38 +02:00

7 lines
85 B
Nix

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