12 lines
		
	
	
	
		
			207 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
	
		
			207 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{lib, ...}: let
 | 
						|
  inherit (lib) types mkOption;
 | 
						|
in {
 | 
						|
  imports = [
 | 
						|
    ./systemd.nix
 | 
						|
  ];
 | 
						|
 | 
						|
  options.ooknet.boot.loader = mkOption {
 | 
						|
    type = types.enum ["systemd" "grub"];
 | 
						|
    default = "systemd";
 | 
						|
  };
 | 
						|
}
 |