this repo has no description
1.POSIX:
2.PHONY: default build dev test fmt
3
4default: build
5
6build:
7 nix build .
8
9dev:
10 sudo nix run . -- \
11 --installer ./examples#nixosConfigurations.installer \
12 --flake ./examples \
13 --hosts ./examples/hosts.json \
14 --ssh-key ~/.ssh/id_ed25519 \
15 --debug
16
17test:
18 go test -v ./...
19
20fmt:
21 go fmt ./...
22 treefmt