Config overhaul

This commit is contained in:
2025-05-29 23:48:27 -06:00
parent ab2d207bf3
commit 0e47cae395
13 changed files with 220 additions and 150 deletions

14
modules/services.nix Normal file
View File

@ -0,0 +1,14 @@
{ config, pkgs, ... }:
{
# Enable the OpenSSH daemon
services.openssh.enable = true;
# Sleep configuration
systemd.sleep.extraConfig = ''
AllowSuspend=no
AllowHibernation=no
AllowHybridSleep=no
AllowSuspendThenHibernate=no
'';
}