This commit is contained in:
Finn Linck Ryan 2026-01-11 01:42:54 +00:00
commit aae151cee6
33 changed files with 1351 additions and 0 deletions

16
justfile Executable file
View 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