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