nix/hosts/nixos/jetson/disk-config.nix
2025-11-16 13:33:13 +01:00

38 lines
938 B
Nix

# 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 = "/";
};
};
};
};
};
};
};
}