nixos/boot.loader.efi: remove with lib;

This commit is contained in:
Felix Buehler
2024-09-15 10:43:58 +02:00
committed by Jörg Thalheim
parent 0a51fdb520
commit 2f7c0a170f
+4 -7
View File
@@ -1,19 +1,16 @@
{ lib, ... }:
with lib;
{
options.boot.loader.efi = {
canTouchEfiVariables = mkOption {
canTouchEfiVariables = lib.mkOption {
default = false;
type = types.bool;
type = lib.types.bool;
description = "Whether the installation process is allowed to modify EFI boot variables.";
};
efiSysMountPoint = mkOption {
efiSysMountPoint = lib.mkOption {
default = "/boot";
type = types.str;
type = lib.types.str;
description = "Where the EFI System Partition is mounted.";
};
};