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

25 lines
402 B
Nix
Raw Normal View History

2022-11-08 19:08:54 -08:00
{ ... }:
{
imports = [ (import ./hardware-configuration.nix) ];
2022-12-05 18:04:08 -08:00
hardware.bluetooth.enable = true;
2022-12-09 10:17:19 -08:00
time.hardwareClockInLocalTime = true;
2022-11-08 19:08:54 -08:00
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
};
};
}