feat(swap): add resumeDevice option which sets boot.resumeDevice

This commit is contained in:
Technofab 2023-06-20 20:48:02 +02:00 committed by mergify[bot]
parent 5874372542
commit 57622c4a68
2 changed files with 7 additions and 0 deletions

View File

@ -38,6 +38,7 @@
content = {
type = "swap";
randomEncryption = true;
resumeDevice = true; # resume from hiberation from this device
};
}
];

View File

@ -16,6 +16,11 @@
default = false;
description = "Whether to randomly encrypt the swap";
};
resumeDevice = lib.mkOption {
type = lib.types.bool;
default = false;
description = "Whether to use this as a boot.resumeDevice";
};
_parent = lib.mkOption {
internal = true;
default = parent;
@ -51,6 +56,7 @@
device = config.device;
randomEncryption = config.randomEncryption;
}];
boot.resumeDevice = lib.mkIf config.resumeDevice dev;
}];
description = "NixOS configuration";
};