Files
nix/modules/nixos/core/boot.nix

19 lines
282 B
Nix
Raw Permalink Normal View History

2025-04-25 23:10:55 +08:00
# 引导配置
{ config, lib, pkgs, ... }:
{
boot = {
loader = {
efi = {
canTouchEfiVariables = true;
efiSysMountPoint = "/boot";
};
grub = {
enable = true;
efiSupport = true;
device = "nodev";
};
};
};
}