Files
lavitz/modules/services.nix
2025-05-30 00:43:18 -06:00

16 lines
340 B
Nix

{ config, pkgs, ... }:
{
# Enable the OpenSSH daemon
services.openssh.enable = true;
# Sleep configuration optimized for NVIDIA
systemd.sleep.extraConfig = ''
AllowSuspend=yes
AllowHibernation=no
AllowHybridSleep=no
AllowSuspendThenHibernate=no
'';
systemd.services.display-manager.restartIfChanged = true;
}