This repository has been archived on 2022-10-30. You can view files and clone it, but cannot push or open issues or pull requests.
Segfautils/shell.nix
Odyssey346 7fb608b1f9 more initial than your
Signed-off-by: Odyssey346 <odyssey346@disroot.org>
2022-07-20 10:57:12 +02:00

11 lines
177 B
Nix

{ pkgs ? import <nixpkgs> {}
}:
pkgs.mkShell {
name="dev";
buildInputs = [
pkgs.go
];
shellHook = ''
echo "Go installed, have your fun"
'';
}