15 lines
282 B
Nix
15 lines
282 B
Nix
|
{ inputs, ... }:
|
||
|
{
|
||
|
imports = with inputs.nixos-hardware.nixosModules; [
|
||
|
common-cpu-intel
|
||
|
common-gpu-intel
|
||
|
common-pc-laptop
|
||
|
common-pc-laptop-hdd
|
||
|
common-pc-hdd
|
||
|
./generated.nix
|
||
|
];
|
||
|
|
||
|
# Do not suspend on lid closing
|
||
|
services.logind.lidSwitch = "ignore";
|
||
|
}
|