15 lines
245 B
Nix
15 lines
245 B
Nix
{ inputs, outputs, lib, config, pkgs, ... }:
|
|
|
|
{
|
|
programs.mangohud = {
|
|
enable = true;
|
|
settings = {
|
|
gpu_temp = true;
|
|
gpu_core_clock = true;
|
|
cpu_temp = true;
|
|
cpu_mhz = true;
|
|
toggle_hud = "F12";
|
|
};
|
|
};
|
|
}
|