# Disko configuration for Jetson Orin Nano Super Developer Kit # Simple NVMe configuration with systemd-boot { disko.devices = { disk = { main = { type = "disk"; device = "/dev/nvme0n1"; content = { type = "gpt"; partitions = { # EFI System Partition ESP = { size = "512M"; type = "EF00"; content = { type = "filesystem"; format = "vfat"; mountpoint = "/boot"; mountOptions = [ "fmask=0077" "dmask=0077" ]; }; }; # Root partition - takes remaining space root = { size = "100%"; content = { type = "filesystem"; format = "ext4"; mountpoint = "/"; }; }; }; }; }; }; }; }