nixos/boot.loader.efi: remove with lib;
This commit is contained in:
committed by
Jörg Thalheim
parent
0a51fdb520
commit
2f7c0a170f
@@ -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.";
|
||||
};
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user