1
0
Fork 0
localhost/hacks.nix

14 lines
235 B
Nix

{ config, pkgs, ... }:
{
imports = [ ./suspend.nix ];
services.batteryNotifier = { # suspend.nix
enable = true;
notifyCapacity = 20;
suspendCapacity = 10;
};
boot.kernel.sysctl."net.ipv4.ip_default_ttl" = 65;
}