nixos-config/system/systemd.nix

13 lines
258 B
Nix
Raw Normal View History

2024-08-03 17:45:23 +02:00
{ ... }:
{
2024-08-05 07:23:16 +02:00
systemd.services.lact = {
description = "AMDGPU Control Daemon";
after = ["multi-user.target"];
wantedBy = ["multi-user.target"];
serviceConfig = {
ExecStart = "${pkgs.lact}/bin/lact daemon";
};
enable = true;
2024-08-05 16:44:20 +02:00
};
2024-08-03 17:45:23 +02:00
}