nixos-config/system/systemd.nix
2024-08-05 18:39:31 +02:00

13 lines
265 B
Nix

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