16 lines
411 B
Makefile
Executable file
16 lines
411 B
Makefile
Executable file
# Show recipe list as help by default.
|
|
default:
|
|
@just --list
|
|
|
|
# Rebuilds the NixOS system configuration.
|
|
rebuild-system host='':
|
|
scripts/rebuild-system.sh {{host}}
|
|
|
|
# Rebuilds the Home-Manager user configuration.
|
|
rebuild-home users='':
|
|
scripts/rebuild-home.sh {{users}}
|
|
|
|
# Rebuilds both the home and the system configuration in that order.
|
|
rebuild-all:
|
|
just rebuild-home
|
|
just rebuild-system
|