Files
pvv-nixos-config/hosts/ildkule/disks.nix
adriangl 1024b428ac
Eval nix flake / evals (push) Failing after 2m24s
Build topology graph / evals (push) Successful in 2m29s
feat: ildkule disco config
2026-05-19 12:16:39 +02:00

28 lines
521 B
Nix

{
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 = "/";
};
};
};
};
};
};
};
}