Add Mangohud

This commit is contained in:
Henry Hiles 2023-07-01 20:20:13 -04:00
parent b936ad92d3
commit 95b2a83033
3 changed files with 51 additions and 11 deletions

View file

@ -1,12 +1,12 @@
{
programs.exa = {
enable = true;
enableAliases = true;
icons = true;
extraOptions = [
"--all"
"--color=always"
"--group-directories-first"
];
};
programs.exa = {
enable = true;
enableAliases = true;
icons = true;
extraOptions = [
"--all"
"--color=always"
"--group-directories-first"
];
};
}

39
home-manager/mangohud.nix Normal file
View file

@ -0,0 +1,39 @@
{
programs.mangohud = {
enable = true;
enableSessionWide = true;
settings = {
gpu_stats = true;
gpu_load_change = true;
gpu_load_value = [50 90];
gpu_load_color = ["FFFFFF" "FFAA7F" "CC0000"];
gpu_text = "GPU";
cpu_load_change = true;
core_load_change = true;
cpu_load_value = [50 90];
cpu_load_color = ["FFFFFF" "FFAA7F" "CC0000"];
cpu_color = "2e97cb";
cpu_text = "CPU";
io_color = "a491d3";
vram = true;
vram_color = "ad64c1";
ram_color = "c26693";
fps = true;
engine_color = "eb5b5b";
gpu_name = true;
gpu_color = "2e9762";
wine_color = "eb5b5b";
frame_timing = 0;
frametime_color = "00ff00";
media_player_color = "ffffff";
time = true;
table_columns = 3;
background_alpha = 0.4;
font_size = 24;
background_color = "020202";
position = "bottom-right";
text_color = "ffffff";
round_corners = 10;
};
};
}

View file

@ -13,9 +13,10 @@
home.stateVersion = "23.11";
}
../home-manager/bat.nix
../home-manager/exa.nix
../home-manager/exa.nix
../home-manager/git.nix
../home-manager/btop.nix
../home-manager/vscode.nix
../home-manager/mangohud.nix
];
}