mirror of
https://github.com/TECHNOFAB11/disko.git
synced 2025-12-12 08:00:05 +01:00
feat(swap): add resumeDevice option which sets boot.resumeDevice
This commit is contained in:
parent
5874372542
commit
876969d793
2 changed files with 7 additions and 0 deletions
|
|
@ -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";
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue