blob: 67d1fd5fae773f18e2f17926dea1cd58ae9f50a5 (
plain) (
tree)
|
|
{pkgs, ...}: {
imports = [
./hardware.nix
../../modules/power-save
../../modules/bluetooth
];
# nvramtool settings:
#
# fn_ctrl_swap = Enable
# wwan = Disable
# me_state = Disable
# gfx_uma_size = 128M
# ectool battery threshold setting (84%):
#
# ectool -w 0xb1 -z 0x54
environment.systemPackages = with pkgs; [
flashrom
nvramtool
intelmetool
ectool
cbmem
];
}
|