aboutsummaryrefslogtreecommitdiffstats
path: root/modules/by-name/lu
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--modules/by-name/lu/lutris/module.nix16
1 files changed, 16 insertions, 0 deletions
diff --git a/modules/by-name/lu/lutris/module.nix b/modules/by-name/lu/lutris/module.nix
index f0b92a0b..eabc11fb 100644
--- a/modules/by-name/lu/lutris/module.nix
+++ b/modules/by-name/lu/lutris/module.nix
@@ -24,10 +24,26 @@ in {
soispha.impermanence.userDirectories = [
".config/lutris"
];
+ soispha.services.unison.pathsToSync = [
+ "~/.config/lutris"
+ ];
+ # TODO: This should also have something, to avoid giving the games network access: 'https://github.com/lutris/docs/blob/master/DisableNetworkAccess.md' <2026-07-10>
home-manager.users.soispha = {
programs.lutris = {
enable = true;
+ extraPackages = [
+ # Show fps and such in game
+ pkgs.mangohud
+
+ pkgs.winetricks
+
+ # Runs game in it's own compositor (avoids issues with all the resolution stuff)
+ pkgs.gamescope
+
+ pkgs.gamemode
+ pkgs.umu-launcher
+ ];
steamPackage = lib.mkIf config.programs.steam.enable config.programs.steam.package;
defaultWinePackage = pkgs.proton-ge-bin;
protonPackages = [pkgs.proton-ge-bin];