Files
nixos.server/disk-config.nix
2026-07-29 15:12:27 +01:00

32 lines
617 B
Nix

{lib, ...}: {
disko.devices = {
disk.sda = {
device = "/dev/sda";
type = "disk";
content = {
type = "gpt";
partitions = {
ESP = {
size = "1G";
type = "EF00";
content = {
type = "filesystem";
format = "vfat";
mountpoint = "/boot";
};
};
root = {
size = "100%";
content = {
type = "filesystem";
format = "ext4";
mountpoint = "/";
};
};
};
};
};
};
}