7 lines
141 B
Nix
7 lines
141 B
Nix
|
|
{ makeEnable, config, ... }:
|
||
|
|
makeEnable config "myModules.laptop" true {
|
||
|
|
services.logind = {
|
||
|
|
lidSwitchExternalPower = "ignore";
|
||
|
|
};
|
||
|
|
}
|