mirror of
https://github.com/daylinmorgan/oizys.git
synced 2024-11-05 06:03:15 -06:00
14 lines
280 B
Makefile
14 lines
280 B
Makefile
lint: ## format *.nix
|
|
nixpkgs-fmt .
|
|
|
|
boot: ## evaluate flake for next boot
|
|
sudo nixos-rebuild boot --flake . --impure
|
|
|
|
switch: ## perform nixos rebuild
|
|
sudo nixos-rebuild switch --flake . --impure
|
|
|
|
store: ## run some store cleanup
|
|
nix store optimise
|
|
|
|
|
|
-include .task.cfg.mk
|