first commit

main
Jörg Thalheim 2 years ago
commit 9e4fd1f36b
No known key found for this signature in database

@ -0,0 +1,8 @@
with import <nixpkgs> {};
mkShell {
nativeBuildInputs = [
go
vault
python3.pkgs.pytest
];
}

@ -0,0 +1,3 @@
module github.com/numtide/vault-nixos
go 1.17

@ -0,0 +1,9 @@
package main
import (
"fmt"
)
func main() {
fmt.Println("Hello world")
}
Loading…
Cancel
Save