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

24 lines
402 B
Nix

{ ... }:
{
imports = [ (import ./hardware-configuration.nix) ];
hardware.bluetooth.enable = true;
time.hardwareClockInLocalTime = true;
boot.loader = {
efi = {
canTouchEfiVariables = true;
efiSysMountPoint = "/boot";
};
grub = {
devices = [ "nodev" ];
efiSupport = true;
enable = true;
version = 2;
useOSProber = true;
};
};
}