mirror of
https://github.com/NiklasGollenstede/nixos-installer.git
synced 2024-11-29 03:13:52 +01:00
f56db19b5e
ZFS, encryption (keys, keystore, LUKS), bootFS, ephemeral root (tmpfs, ZFS, F2FS, ...), testing in qemu, options & debugging, ... and many small things
592 B
592 B
- #!/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/
.
See its README for more documentation.
(Example) Implementation
# Replace the entry point with the same function:
function install-system {( set -eu # 1: blockDevs
prepare-installer "$@"
do-disk-setup "${argv[0]}"
init-or-restore-system
install-system-to $mnt
)}
# ... could also replace any other function(s) ...