Initial content commit

This commit is contained in:
2025-10-03 16:11:03 +02:00
commit 9e7054d962
5 changed files with 269 additions and 0 deletions

36
singe-disk-layout.nix Normal file
View File

@@ -0,0 +1,36 @@
{ ... }:
{
disko.devices.disk.main = {
type = "disk";
content = {
type = "gpt";
partitions = {
MBR = {
priority = 0;
size = "1M";
type = "EF02";
};
ESP = {
priority = 1;
size = "500M";
type = "EF00";
content = {
type = "filesystem";
format = "vfat";
mountpoint = "/boot";
};
};
root = {
priority = 2;
size = "100%";
content = {
type = "filesystem";
format = "ext4";
mountpoint = "/";
};
};
};
};
};
}