feat: add lact (gpu performance tool)
This commit is contained in:
parent
1c3310ef85
commit
91c411f17c
3 changed files with 10 additions and 1 deletions
|
@ -2,7 +2,8 @@
|
||||||
imports = [
|
imports = [
|
||||||
./bluetooth.nix
|
./bluetooth.nix
|
||||||
./fwupd.nix
|
./fwupd.nix
|
||||||
./gpu.nix
|
./gpu-backend.nix
|
||||||
|
./gpu-frontend.nix
|
||||||
./print.nix
|
./print.nix
|
||||||
./scan.nix
|
./scan.nix
|
||||||
#./trackpoint.nix
|
#./trackpoint.nix
|
||||||
|
|
8
modules/hardware/gpu-frontend.nix
Normal file
8
modules/hardware/gpu-frontend.nix
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
{pkgs, ...}: {
|
||||||
|
environment.systemPackages = [ pkgs.lact ];
|
||||||
|
|
||||||
|
systemd = {
|
||||||
|
packages = [ pkgs.lact ];
|
||||||
|
services.lactd.wantedBy = ["multi-user.target"];
|
||||||
|
};
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue