11 lines
211 B
Nix
11 lines
211 B
Nix
{ pkgs, ... }:
|
|
{
|
|
hardware = {
|
|
graphics.enable = true;
|
|
enableRedistributableFirmware = true;
|
|
bluetooth.enable = true;
|
|
bluetooth.powerOnBoot = true;
|
|
};
|
|
local.hardware-clock.enable = false;
|
|
}
|