hestia/disks: add swap

This commit is contained in:
Infinidoge 2024-11-23 13:08:04 -05:00
parent f94d93f0de
commit ac568e1700
No known key found for this signature in database

View file

@ -32,6 +32,11 @@ with lib.our.disko;
datasets = {
storage = mkZfs "/storage" { };
backups = mkZfs "/backups" { };
swap = mkZvol "16G" {
type = "swap";
resumeDevice = false;
discardPolicy = "both";
};
};
};
};