Update README.md

make simple disko config even simpler
This commit is contained in:
Paul Haerle 2023-12-20 22:52:34 +00:00 committed by Jörg Thalheim
parent b4104fcaea
commit 3ca75072ad

View File

@ -58,11 +58,11 @@ To access sample configurations for commonly-used disk layouts, refer to the
A simple disko configuration may look like this: A simple disko configuration may look like this:
``` ```
{ disks ? [ "/dev/vdb" ], ... }: { {
disko.devices = { disko.devices = {
disk = { disk = {
 vdb = {  vdb = {
  device = builtins.elemAt disks 0;   device = "/dev/sda";
  type = "disk";   type = "disk";
  content = {   content = {
   type = "gpt";    type = "gpt";
@ -96,7 +96,7 @@ a disk named /dev/nvme0n1, you would run the following command to partition,
format and mount the disk. format and mount the disk.
``` ```
$ sudo nix --experimental-features "nix-command flakes" run github:nix-community/disko -- --mode disko /tmp/disko-config.nix --arg disks '[ "/dev/nvme0n1" ]' $ sudo nix --experimental-features "nix-command flakes" run github:nix-community/disko -- --mode disko /tmp/disko-config.nix
``` ```
## Related Tools ## Related Tools