Files
nix/modules/nixos/core/boot.nix
2025-08-18 12:03:21 +08:00

19 lines
282 B
Nix

# 引导配置
{ config, lib, pkgs, ... }:
{
boot = {
loader = {
efi = {
canTouchEfiVariables = true;
efiSysMountPoint = "/boot";
};
grub = {
enable = true;
efiSupport = true;
device = "nodev";
};
};
};
}