feat: add lact (gpu performance tool)

This commit is contained in:
Ranomier 2025-06-28 16:07:25 +02:00
parent 1c3310ef85
commit 91c411f17c
3 changed files with 10 additions and 1 deletions

View file

@ -2,7 +2,8 @@
imports = [
./bluetooth.nix
./fwupd.nix
./gpu.nix
./gpu-backend.nix
./gpu-frontend.nix
./print.nix
./scan.nix
#./trackpoint.nix

View file

@ -0,0 +1,8 @@
{pkgs, ...}: {
environment.systemPackages = [ pkgs.lact ];
systemd = {
packages = [ pkgs.lact ];
services.lactd.wantedBy = ["multi-user.target"];
};
}