nixos-config/disko/ext4.nix
2025-02-28 15:56:59 +01:00

24 lines
471 B
Nix

{ device, mountpoint ? "/run/extraDrive" }:
{
disko.devices = {
disk = {
"${device}" = {
inherit device;
type = "disk";
content = {
type = "gpt";
partitions = {
root = {
size = "100%";
content = {
type = "filesystem";
format = "ext4";
inherit mountpoint;
};
};
};
};
};
};
};
}