## (dixie) disko config ## Alienware Aurora R11: Samsung PM9A1 1 TB NVMe is the system disk. The 6 TB SATA HDD and the ## USB cache stick are left alone here (the stick is mounted by label in default.nix). ## Unencrypted on purpose: headless box that must come back from a power cut with nobody ## at the console to unlock it. { lib, ... }: { disko.devices.disk.main = { type = "disk"; device = "/dev/disk/by-id/nvme-eui.36355630521205220025384500000001"; content = { type = "gpt"; partitions = { ESP = { size = "1G"; type = "EF00"; content = { type = "filesystem"; format = "vfat"; mountpoint = "/boot"; mountOptions = [ "umask=0077" ]; }; }; root = { size = "100%"; content = { type = "filesystem"; format = "ext4"; mountpoint = "/"; mountOptions = [ "noatime" ]; }; }; }; }; }; }