age-passgen/shell.nix
2025-02-26 16:36:38 +00:00

7 lines
93 B
Nix

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