disko config

This commit is contained in:
2026-07-29 15:12:27 +01:00
parent f873b1e579
commit ba07af97e4

31
disk-config.nix Normal file
View File

@@ -0,0 +1,31 @@
{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 = "/";
};
};
};
};
};
};
}