age-passgen/shell.nix

8 lines
112 B
Nix

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