initial commit x2
This commit is contained in:
11
system/systemd.nix
Normal file
11
system/systemd.nix
Normal file
@@ -0,0 +1,11 @@
|
||||
{ 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";
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user