summaryrefslogtreecommitdiff
path: root/users/seth/programs/mangohud.nix
diff options
context:
space:
mode:
Diffstat (limited to 'users/seth/programs/mangohud.nix')
-rw-r--r--users/seth/programs/mangohud.nix17
1 files changed, 17 insertions, 0 deletions
diff --git a/users/seth/programs/mangohud.nix b/users/seth/programs/mangohud.nix
new file mode 100644
index 0000000..2b33471
--- /dev/null
+++ b/users/seth/programs/mangohud.nix
@@ -0,0 +1,17 @@
+{ pkgs, ... }: {
+ home.packages = with pkgs; [ mangohud ];
+
+ xdg.configFile."MangoHud.conf" = {
+ text = ''
+ legacy_layout=false
+ cpu_stats
+ cpu_temp
+ gpu_stats
+ gpu_temp
+ fps
+ frametime
+ media_player
+ media_player_name = spotify
+ '';
+ };
+}