nicks-nix-config/hosts/laptop/default.nix

21 lines
324 B
Nix
Raw Normal View History

2022-11-08 19:08:54 -08:00
{ ... }:
{
imports = [ (import ./hardware-configuration.nix) ];
boot.loader = {
efi = {
canTouchEfiVariables = true;
efiSysMountPoint = "/boot";
};
grub = {
devices = [ "nodev" ];
efiSupport = true;
enable = true;
version = 2;
2022-12-04 15:15:50 -08:00
useOSProber = true;
2022-11-08 19:08:54 -08:00
};
};
}