nixos-config/modules/core/services.nix

14 lines
280 B
Nix
Raw Normal View History

{ ... }:
2023-11-05 17:56:55 +01:00
{
2023-11-05 11:40:44 +01:00
services = {
2024-04-12 22:23:15 +02:00
fstrim.enable = true;
2023-11-05 11:40:44 +01:00
};
2024-05-15 13:55:17 +02:00
services.logind.extraConfig = ''
# dont shutdown when power button is short-pressed
HandlePowerKey=ignore
'';
# To prevent getting stuck at shutdown.
systemd.extraConfig = "DefaultTimeoutStopSec=10s";
2023-11-05 11:40:44 +01:00
}