27 lines
495 B
Nix
27 lines
495 B
Nix
{pkgs, ...}: {
|
|
environment.systemPackages = with pkgs; [
|
|
usbutils
|
|
pciutils
|
|
pavucontrol
|
|
wget
|
|
dualsensectl
|
|
protontricks
|
|
wl-clipboard
|
|
tldr
|
|
lact
|
|
];
|
|
imports = [
|
|
../../packages/virtualbox/default.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;
|
|
};
|
|
}
|