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

13 lines
258 B
Nix

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