mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
27 lines
533 B
Nix
27 lines
533 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let cfg = config.programs.criu;
|
|
in {
|
|
|
|
options = {
|
|
programs.criu = {
|
|
enable = mkOption {
|
|
default = false;
|
|
description = ''
|
|
Install <command>criu</command> along with necessary kernel options.
|
|
'';
|
|
};
|
|
};
|
|
};
|
|
config = mkIf cfg.enable {
|
|
system.requiredKernelConfig = with config.lib.kernelConfig; [
|
|
(isYes "CHECKPOINT_RESTORE")
|
|
];
|
|
boot.kernel.features.criu = true;
|
|
environment.systemPackages = [ pkgs.criu ];
|
|
};
|
|
|
|
}
|