24 lines
418 B
Nix
24 lines
418 B
Nix
{ ... }:
|
|
|
|
{
|
|
disko.devices = {
|
|
disk = {
|
|
logs = {
|
|
type = "disk";
|
|
content = {
|
|
type = "gpt";
|
|
partitions = {
|
|
data = {
|
|
size = "100%";
|
|
content = {
|
|
type = "filesystem";
|
|
format = "ext4";
|
|
mountpoint = "/var/log";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|