forked from pub-solar/os
12 lines
276 B
Markdown
12 lines
276 B
Markdown
|
# ISO
|
||
|
|
||
|
Making and writing an installable iso for `hosts/NixOS.nix` is as simple as:
|
||
|
```sh
|
||
|
flk iso NixOS
|
||
|
|
||
|
dd bs=4M if=result/iso/*.iso of=/dev/$your_installation_device \
|
||
|
status=progress oflag=sync
|
||
|
```
|
||
|
|
||
|
This works for any file matching `hosts/*.nix` excluding `default.nix`.
|