system/hosts/asus-gl553vd/hardware-configuration/default.nix

38 lines
673 B
Nix
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{
imports = [
./generated.nix # Include the results of the hardware scan.
./manual.nix
];
powerManagement = {
enable = true;
powertop.enable = true;
};
services.thermald.enable = true;
services.tlp .enable = true;
networking = {
useDHCP = false;
interfaces = {
wlp2s0.useDHCP = true;
};
};
# configure mouse and touchpad
services.libinput = {
enable = true;
touchpad = {
accelSpeed = "0.5";
disableWhileTyping = true;
};
};
hardware.bluetooth.enable = true;
services.logind.extraConfig = ''
# dont shutdown when power button is short-pressed
HandlePowerKey=ignore
'';
}