mirror of
https://github.com/Nickiel12/nicks-nix-config.git
synced 2024-11-22 20:59:32 -08:00
20 lines
341 B
Nix
20 lines
341 B
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
imports = [ (import ./hardware-configuration.nix) ];
|
||
|
|
||
|
boot.loader = {
|
||
|
efi = {
|
||
|
canTouchEfiVariables = true;
|
||
|
efiSysMountPoint = "/boot";
|
||
|
};
|
||
|
grub = {
|
||
|
devices = [ "nodev" ];
|
||
|
efiSupport = true;
|
||
|
enable = true;
|
||
|
version = 2;
|
||
|
useOSProber = false;
|
||
|
};
|
||
|
};
|
||
|
}
|