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

19 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;
};
};
}