Steam gaming moment

This commit is contained in:
xmm16 2024-12-25 16:00:17 -03:00
commit 727f1e87a5
No known key found for this signature in database
2 changed files with 22 additions and 0 deletions

View file

@ -10,6 +10,7 @@
./energy.nix
./ssh.nix
./networking.nix
./steam.nix
];
config = {

21
hosts/micronix/steam.nix Normal file
View file

@ -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;
};
};
}