37 lines
670 B
Nix
37 lines
670 B
Nix
{
|
|
AC = {
|
|
powerButtonAction = "shutDown";
|
|
whenLaptopLidClosed = "doNothing";
|
|
|
|
autoSuspend.action = "nothing";
|
|
dimDisplay.enable = false;
|
|
|
|
turnOffDisplay = {
|
|
idleTimeout = "never";
|
|
};
|
|
};
|
|
|
|
battery = {
|
|
powerButtonAction = "shutDown";
|
|
whenLaptopLidClosed = "doNothing";
|
|
|
|
autoSuspend.action = "nothing";
|
|
dimDisplay.enable = false;
|
|
|
|
turnOffDisplay = {
|
|
idleTimeout = "never";
|
|
};
|
|
};
|
|
|
|
lowBattery = {
|
|
powerButtonAction = "shutDown";
|
|
whenLaptopLidClosed = "doNothing";
|
|
|
|
autoSuspend.action = "nothing";
|
|
dimDisplay.enable = false;
|
|
|
|
turnOffDisplay = {
|
|
idleTimeout = "never";
|
|
};
|
|
};
|
|
}
|