this repo has no description
1{
2 disko.devices = {
3 disk = {
4 my-disk = {
5 device = "/dev/sda";
6 type = "disk";
7 content = {
8 type = "gpt";
9 partitions = {
10 ESP = {
11 type = "EF00";
12 size = "500M";
13 content = {
14 type = "filesystem";
15 format = "vfat";
16 mountpoint = "/boot";
17 mountOptions = [ "umask=0077" ];
18 };
19 };
20 root = {
21 size = "100%";
22 content = {
23 type = "filesystem";
24 format = "ext4";
25 mountpoint = "/";
26 };
27 };
28 };
29 };
30 };
31 };
32 };
33}