mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 16:57:55 +00:00
19 lines
338 B
Makefile
19 lines
338 B
Makefile
.PHONY: docs-serve
|
|
docs-serve:
|
|
hugo -s docs/website serve
|
|
|
|
.PHONY: docs-build
|
|
docs-build:
|
|
hugo -s docs/website
|
|
|
|
# Ideally, this should be done only in the remote CI environment with a certain
|
|
# update cadence/rhythm.
|
|
.PHONY: update
|
|
update:
|
|
npins update
|
|
|
|
# Ideally this should be done before committing.
|
|
.PHONY: format
|
|
format:
|
|
treefmt
|