Files
LillyOS/hosts/lillypc/systemd.nix
2026-01-05 04:04:42 +01:00

13 lines
307 B
Nix

{ pkgs, ... }:
{
systemd.services.nvidia-undervolt = {
enable = true;
description = "Set NVIDIA GPU undervolt";
wantedBy = [ "multi-user.target" ];
serviceConfig = {
Type = "oneshot";
ExecStart = "${pkgs.nvidia_oc}/bin/nvidia_oc set --index 0 --freq-offset 250";
};
};
}