Compare commits

..

No commits in common. "cf92337f0b3a7b574886dafb96cefcf6ac1aa3c1" and "91512c2b502378f78425d9b88bf9e1aff2c72e55" have entirely different histories.

2 changed files with 32 additions and 18 deletions

View File

@ -82,22 +82,6 @@ in {
after = [ "network.target" ]; after = [ "network.target" ];
}; };
systemd.user.services.goimapnotify-disroot = {
description = "Sync disroot mail using IMAP IDLE";
wantedBy = [ "default.target" ];
path = [ goimapnotify pass-wayland isync-oauth2 notmuch ];
script = ''
${pkgs.goimapnotify}/bin/goimapnotify -conf /home/coolneng/.config/goimapnotify/disroot.conf
'';
serviceConfig = {
ExecStartPre = "/home/coolneng/.local/share/scripts/mail-sync disroot";
Type = "simple";
Restart = "always";
RestartSec = 20;
};
after = [ "network.target" ];
};
# Garbage collect git repositories on a monthly basis # Garbage collect git repositories on a monthly basis
systemd.user.services.git-gc = { systemd.user.services.git-gc = {
description = "Garbage collect git repositories"; description = "Garbage collect git repositories";

View File

@ -1,8 +1,38 @@
{ config, lib, pkgs, ... }: { config, lib, pkgs, ... }:
{ {
# Enable the auto-cpufreq daemon # Enable the TLP daemon
services.auto-cpufreq.enable = true; services.tlp = {
enable = true;
settings = {
# Use the new CPU frequency scaling governor
CPU_SCALING_GOVERNOR_ON_AC = "schedutil";
CPU_SCALING_GOVERNOR_ON_BAT = "schedutil";
# Adjust CPU frequencies accordingly to the power state
CPU_SCALING_MIN_FREQ_ON_AC = 800000;
CPU_SCALING_MAX_FREQ_ON_AC = 3000000;
CPU_SCALING_MIN_FREQ_ON_BAT = 800000;
CPU_SCALING_MAX_FREQ_ON_BAT = 2300000;
# Enable audio power saving for Intel HDA, AC97 devices (timeout in secs).
# A value of 0 disables, >=1 enables power saving (recommended: 1).
# Default: 0 (AC), 1 (BAT)
SOUND_POWER_SAVE_ON_AC = 0;
SOUND_POWER_SAVE_ON_BAT = 1;
# Runtime Power Management for PCI(e) bus devices: on=disable, auto=enable.
# Default: on (AC), auto (BAT)
RUNTIME_PM_ON_AC = "on";
RUNTIME_PM_ON_BAT = "auto";
# Battery feature drivers: 0=disable, 1=enable
# Default: 1 (all)
NATACPI_ENABLE = 1;
TPACPI_ENABLE = 1;
TPSMAPI_ENABLE = 1;
};
};
# Suspend when the battery is critical # Suspend when the battery is critical
services.udev.extraRules = '' services.udev.extraRules = ''