mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 07:01:54 +00:00
28 lines
546 B
Nix
28 lines
546 B
Nix
{ config, lib, ... }:
|
|
|
|
let
|
|
inherit (lib) mkOption mkIf;
|
|
cfg = config.environment.blcr;
|
|
blcrPkg = config.boot.kernelPackages.blcr;
|
|
in
|
|
|
|
{
|
|
###### interface
|
|
|
|
options = {
|
|
environment.blcr.enable = mkOption {
|
|
default = false;
|
|
description =
|
|
"Whether to enable support for the BLCR checkpointing tool.";
|
|
};
|
|
};
|
|
|
|
###### implementation
|
|
|
|
config = mkIf cfg.enable {
|
|
boot.kernelModules = [ "blcr" "blcr_imports" ];
|
|
boot.extraModulePackages = [ blcrPkg ];
|
|
environment.systemPackages = [ blcrPkg ];
|
|
};
|
|
}
|