programs.criu: add nixos option for installing criu + kernel flags

This commit is contained in:
Herwig Hochleitner
2018-02-15 09:10:32 +01:00
committed by Herwig Hochleitner
parent 0b621321cd
commit 66080ae4d8
3 changed files with 44 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
{ 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 ];
};
}