Gaming: enable steam

This commit is contained in:
Toast 2023-06-29 18:42:24 +02:00
parent e1d352d019
commit 757f60070f
2 changed files with 10 additions and 0 deletions

View file

@ -2,5 +2,6 @@
{
imports = [
./steam.nix
];
}

9
roles/gaming/steam.nix Normal file
View file

@ -0,0 +1,9 @@
{ config, pkgs, ... }:
{
programs.steam = {
enable = true;
# Doubt that I'll use it, but I'll enable it anyways
remotePlay.openFirewall = true;
};
}