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

22 lines
343 B
Nix
Raw Normal View History

2023-03-31 17:38:15 -07:00
{ config, lib, pkgs, ... }:
2023-03-31 17:38:15 -07:00
{
imports = [ (import ./hardware-configuration.nix) ];
boot.loader = {
efi = {
canTouchEfiVariables = true;
efiSysMountPoint = "/boot";
};
grub = {
devices = [ "nodev" ];
efiSupport = true;
enable = true;
version = 2;
useOSProber = false;
};
};
}