blob: a1f370f1062210be3908357abea42dcba21c1513 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
HOSTNAME = $(shell hostname)
.PHONY: build
build:
nix-shell --run "deploy --dry-activate --skip-checks --debug-logs .#$(HOSTNAME) -- --print-build-logs --show-trace"
.PHONY: install
install:
nix-shell --run "deploy --skip-checks --debug-logs .#$(HOSTNAME) -- --print-build-logs --show-trace"
.PHONY: nur
nur:
nix flake lock --update-input nur
|