From 727f1e87a525df628f283cf7ee8748832562d02d Mon Sep 17 00:00:00 2001 From: xmm16 Date: Wed, 25 Dec 2024 16:00:17 -0300 Subject: [PATCH] Steam gaming moment --- hosts/micronix/default.nix | 1 + hosts/micronix/steam.nix | 21 +++++++++++++++++++++ 2 files changed, 22 insertions(+) create mode 100644 hosts/micronix/steam.nix diff --git a/hosts/micronix/default.nix b/hosts/micronix/default.nix index e9f78cc..bf75a4c 100644 --- a/hosts/micronix/default.nix +++ b/hosts/micronix/default.nix @@ -10,6 +10,7 @@ ./energy.nix ./ssh.nix ./networking.nix + ./steam.nix ]; config = { diff --git a/hosts/micronix/steam.nix b/hosts/micronix/steam.nix new file mode 100644 index 0000000..99020eb --- /dev/null +++ b/hosts/micronix/steam.nix @@ -0,0 +1,21 @@ +{pkgs, ...}: { + programs.steam = { + enable = true; + extraPackages = with pkgs; [ + gamescope_git + latencyflex-vulkan + ]; + extraCompatPackages = with pkgs; [ + proton-ge-custom + ]; + extest = { + enable = true; + }; + protontricks = { + enable = true; + }; + gamescopeSession = { + enable = true; + }; + }; +}