proper lact systemd service

This commit is contained in:
Mohamed C. 2024-08-05 07:23:16 +02:00 committed by GitHub
parent 18c685c70a
commit c331355304
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,4 +1,11 @@
{ ... }:
{
systemd.services.lact.enable = true;
systemd.services.lact = {
description = "AMDGPU Control Daemon";
after = ["multi-user.target"];
wantedBy = ["multi-user.target"];
serviceConfig = {
ExecStart = "${pkgs.lact}/bin/lact daemon";
};
enable = true;
}