Files
NixConfig/nixos/conf/GM/Pkgs/lact.nix
T
2025-10-19 20:22:15 -03:00

13 lines
334 B
Nix

{ config, lib, inputs, pkgs, ... }: {
environment.systemPackages = with pkgs; [lact];
systemd.services.lact = {
description = "GPU Control Daemon";
after = ["multi-user.target"];
wantedBy = ["multi-user.target"];
serviceConfig = {
ExecStart = "${pkgs.lact}/bin/lact daemon";
};
enable = true;
};
}