nixos-conf/personal/hardware/hibernate.nix

14 lines
196 B
Nix
Raw Normal View History

2025-05-29 15:39:42 +03:00
{ lib, ... }:
{
swapDevices = lib.mkForce [
{
device = "/var/lib/swapfile";
size = 16 * 1024;
}
];
boot = {
resumeDevice = lib.mkDefault "/dev/mapper/nixos";
};
}