mirror of
https://github.com/alyssadev/nixos.git
synced 2025-10-14 04:59:39 +10:00
8 lines
192 B
Nix
8 lines
192 B
Nix
({ config, pkgs, ... }: {
|
|
networking.hostName = "aly-laptop";
|
|
services.logind = {
|
|
lidSwitch = "suspend";
|
|
lidSwitchDocked = "ignore";
|
|
lidSwitchExternalPower = "ignore";
|
|
};
|
|
})
|