aboutsummaryrefslogtreecommitdiff
path: root/nixos/games
diff options
context:
space:
mode:
authorAargh Rai <aargh.rai+git@gmail.com>2026-04-16 11:43:29 +0530
committerAargh Rai <aargh.rai+git@gmail.com>2026-04-16 11:43:29 +0530
commitc57791d3b1cb8e6ae23e304ba08c55746c0b8013 (patch)
tree3a75b2c1a3aed11fe45d6dbe953eba1ab17af406 /nixos/games
parent7af2a74fcb5fce4b35c2b3569206bc3f3477aad9 (diff)
calendar navigation + flake update + random other tools + no global postgres
Diffstat (limited to 'nixos/games')
-rw-r--r--nixos/games/default.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/nixos/games/default.nix b/nixos/games/default.nix
index d928476..5894464 100644
--- a/nixos/games/default.nix
+++ b/nixos/games/default.nix
@@ -3,12 +3,14 @@
imports =
(if games.minecraft then [ ./minecraft.nix ] else []);
programs.steam.enable = true;
+ programs.steam.protontricks.enable = true;
programs.steam.extraCompatPackages = with pkgs; [
proton-ge-bin
];
environment.systemPackages = with pkgs; [
steam-run
- protontricks
mangohud
+ freetype
+ fontconfig
];
}