added disko configuration

This commit is contained in:
2026-07-13 19:10:21 +10:00
parent a919252a47
commit a5ef1aa519
2 changed files with 38 additions and 0 deletions
+32
View File
@@ -0,0 +1,32 @@
{ lib, ... }:
{
disko.devices = {
disk = {
main = {
type = "disk";
device = "/dev/sda";
content = {
type = "gpt";
partitions = {
boot = {
size = "1M";
type = "EF02";
};
root = {
size = "100%";
content = {
type = "filesystem";
format = "ext4";
mountpoint = "/";
};
};
};
};
};
};
};
}