summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--home/wayland/home.nix1
-rw-r--r--home/wayland/modules/mango.nix29
2 files changed, 30 insertions, 0 deletions
diff --git a/home/wayland/home.nix b/home/wayland/home.nix
index df9f910..c705f4c 100644
--- a/home/wayland/home.nix
+++ b/home/wayland/home.nix
@@ -2,6 +2,7 @@
imports = [
../common/home.nix
./modules/foot.nix
+ ./modules/mango.nix
./modules/portal.nix
./modules/zathura.nix
./modules/firefox.nix
diff --git a/home/wayland/modules/mango.nix b/home/wayland/modules/mango.nix
new file mode 100644
index 0000000..31cd7d6
--- /dev/null
+++ b/home/wayland/modules/mango.nix
@@ -0,0 +1,29 @@
+{ ... }: {
+ programs.mangohud = {
+ enable = true;
+
+ settings = {
+ horizontal = true;
+ legacy_layout = 0;
+ hud_no_margin = true;
+ gpu_stats = true;
+ gpu_temp = true;
+ gpu_core_clock = true;
+ gpu_mem_clock = true;
+ gpu_power = true;
+ gpu_name = true;
+ cpu_stats = true;
+ cpu_temp = true;
+ cpu_power = true;
+ cpu_mhz = true;
+ vram = true;
+ vram_color = "ad64c1";
+ ram = true;
+ ram_color = "c26693";
+ fps = true;
+ frame_timing = 1;
+ frametime_color = "00ff00";
+ text_color = "ffffff";
+ };
+ };
+}