Files
lavitz/modules/services.nix
2025-05-30 12:07:48 -06:00

15 lines
280 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
'';
}