more initial than your

Signed-off-by: Odyssey346 <odyssey346@disroot.org>
This commit is contained in:
Odyssey346
2022-07-20 10:57:12 +02:00
commit 7fb608b1f9
6 changed files with 728 additions and 0 deletions

11
shell.nix Normal file
View File

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