diff --git a/hosts/hestia/disks.nix b/hosts/hestia/disks.nix index 80ba583..2bf5ecc 100644 --- a/hosts/hestia/disks.nix +++ b/hosts/hestia/disks.nix @@ -32,6 +32,11 @@ with lib.our.disko; datasets = { storage = mkZfs "/storage" { }; backups = mkZfs "/backups" { }; + swap = mkZvol "16G" { + type = "swap"; + resumeDevice = false; + discardPolicy = "both"; + }; }; }; };