mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-06-16 10:05:13 -05:00
22 lines
417 B
Nix
22 lines
417 B
Nix
![]() |
{ pkgs, ... }:
|
||
|
{
|
||
|
programs = {
|
||
|
steam = {
|
||
|
enable = true;
|
||
|
remotePlay.openFirewall = true;
|
||
|
dedicatedServer.openFirewall = true;
|
||
|
extraPackages = builtins.attrValues {
|
||
|
inherit (pkgs)
|
||
|
curl
|
||
|
;
|
||
|
};
|
||
|
gamescopeSession.enable = true;
|
||
|
};
|
||
|
java.enable = true;
|
||
|
};
|
||
|
hardware.steam-hardware.enable = true;
|
||
|
programs.gamescope = {
|
||
|
enable = true;
|
||
|
};
|
||
|
}
|