nixos/disks/layout_vm_log.nix
2025-10-09 22:46:00 +02:00

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";
};
};
};
};
};
};
};
}