Files
nix-new/system/systemd.nix

12 lines
274 B
Nix
Raw Normal View History

2025-06-23 00:47:36 +05:00
{ config, pkgs, ... }: {
systemd.services.gpu = {
enable = true;
wantedBy = [ "multi-user.target" ];
serviceConfig = {
Description = "gpu service";
Type = "simple";
ExecStart = "${pkgs.intel-gpu-tools}/bin/intel_gpu_frequency -s 400";
};
};
}