Compare commits

...

2 Commits

Author SHA1 Message Date
coolneng 58ac0895bf
Decrease the amount of periodic mail syncs 2022-12-01 04:38:17 +01:00
coolneng 2e7a912294
Undervolt CPU and GPU 2022-12-01 04:37:58 +01:00
2 changed files with 8 additions and 1 deletions

View File

@ -121,7 +121,7 @@ in {
/home/coolneng/.local/share/scripts/mail-sync -a /home/coolneng/.local/share/scripts/mail-sync -a
''; '';
after = [ "network-online.target" ]; after = [ "network-online.target" ];
startAt = "*-*-* *:00,15,30,45:00"; startAt = "*-*-* *:00,30";
}; };
# HACK Change home partition permissions for mopidy # HACK Change home partition permissions for mopidy

View File

@ -50,4 +50,11 @@
systemd.services.thinkfan.preStart = '' systemd.services.thinkfan.preStart = ''
/run/current-system/sw/bin/modprobe -r thinkpad_acpi && /run/current-system/sw/bin/modprobe thinkpad_acpi /run/current-system/sw/bin/modprobe -r thinkpad_acpi && /run/current-system/sw/bin/modprobe thinkpad_acpi
''; '';
# Undervolt CPU and GPU
services.undervolt = {
enable = true;
coreOffset = -120;
gpuOffset = -120;
};
} }