forked from extern/nixos-installer
23 lines
644 B
Bash
23 lines
644 B
Bash
#!/usr/bin/env bash
|
|
: << '```bash'
|
|
|
|
# System Installer Script
|
|
|
|
This is a minimal example for an adjusted NixOS system installation using the functions defined in [`../lib/setup-scripts/`](../lib/setup-scripts/).
|
|
See its [README](../lib/setup-scripts/README.md) for more documentation.
|
|
|
|
|
|
## (Example) Implementation
|
|
|
|
```bash
|
|
|
|
# Replace the entry point with the same function:
|
|
function install-system {( set -o pipefail -u # (void)
|
|
trap - EXIT # start with empty traps for sub-shell
|
|
prepare-installer || exit
|
|
do-disk-setup "${argv[0]}" || exit
|
|
install-system-to $mnt || exit
|
|
)}
|
|
|
|
# ... could also replace any other function(s) ...
|