nixos-config/linux/protostar/disko.nix

31 lines
632 B
Nix
Raw Normal View History

2024-08-14 11:14:20 -07:00
{...}: {
2024-03-02 15:10:23 -08:00
disko.devices = {
# Partition the physical disk
disk.storage = {
device = "/dev/nvme0n1";
content = {
type = "gpt";
partitions = {
esp = {
size = "1G";
type = "ef00";
content = {
type = "filesystem";
format = "vfat";
mountpoint = "/boot";
};
};
2025-06-28 17:34:02 -05:00
root = {
2024-03-02 15:10:23 -08:00
size = "100%";
content = {
2025-06-28 17:34:02 -05:00
type = "filesystem";
format = "ext4";
mountpoint = "/";
2024-03-02 15:10:23 -08:00
};
};
};
};
};
};
}