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 ];
 | |
|   };
 | |
| }
 | 
