feat: ildkule disco config

This commit is contained in:
Adrian G L
2026-05-19 12:16:39 +02:00
parent 1e6b692fbf
commit 1024b428ac
4 changed files with 54 additions and 15 deletions

27
hosts/ildkule/disks.nix Normal file
View File

@@ -0,0 +1,27 @@
{
disko.devices = {
disk = {
sda = {
device = "/dev/sda";
type = "disk";
content = {
type = "gpt";
partitions = {
bios = {
size = "1M";
type = "EF02";
};
root = {
size = "100%";
content = {
type = "filesystem";
format = "ext4";
mountpoint = "/";
};
};
};
};
};
};
};
}