nixos-config/system/systemd.nix
2024-08-05 16:53:34 +02:00

13 lines
263 B
Nix

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