- shell.nix with go and gopls for NixOS dev environment - go.mod for github.com/pieMusic/vmux module - types.go with Process, Session, SessionState (Working/NeedsInput/Idle/Unknown) Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
5 lines
90 B
Nix
5 lines
90 B
Nix
{ pkgs ? import <nixpkgs> {} }:
|
|
pkgs.mkShell {
|
|
buildInputs = with pkgs; [ go gopls ];
|
|
}
|