Files
cish/shell.nix
2025-08-23 12:46:28 +02:00

7 lines
85 B
Nix

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