nix/hosts/nxs/modules/nixos/power-management.nix
Narrator 49dc0ecc50
Some checks failed
CI / formatting (push) Failing after 9m23s
CI / nix_flake_check (push) Failing after 9m24s
cleanup
2025-12-09 14:35:23 +01:00

23 lines
547 B
Nix

{ config, lib, pkgs, ... }:
{
services.logind = {
lidSwitch = "ignore";
lidSwitchDocked = "ignore";
lidSwitchExternalPower = "lock";
};
systemd.sleep.extraConfig = ''
AllowSuspend=no
AllowHibernation=no
AllowHybridSleep=no
AllowSuspendThenHibernate=no
'';
systemd.services = {
systemd-suspend.environment.SYSTEMD_SLEEP_FREEZE_USER_SESSIONS = "false";
systemd-hibernate.environment.SYSTEMD_SLEEP_FREEZE_USER_SESSIONS = "false";
"getty@tty2".enable = true;
"getty@tty3".enable = true;
};
}