init
This commit is contained in:
commit
aae151cee6
33 changed files with 1351 additions and 0 deletions
16
justfile
Executable file
16
justfile
Executable file
|
|
@ -0,0 +1,16 @@
|
|||
# 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue