summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
Diffstat (limited to 'modules')
-rw-r--r--modules/nixos/nix-common.nix1
-rw-r--r--modules/nixos/steam.nix2
2 files changed, 3 insertions, 0 deletions
diff --git a/modules/nixos/nix-common.nix b/modules/nixos/nix-common.nix
index a3d291b..c7b6fe5 100644
--- a/modules/nixos/nix-common.nix
+++ b/modules/nixos/nix-common.nix
@@ -1,4 +1,5 @@
{ config, pkgs, ... }: {
+ imports = [./lix.nix];
nix = {
settings = {
diff --git a/modules/nixos/steam.nix b/modules/nixos/steam.nix
index 8c7256d..0dcb7c4 100644
--- a/modules/nixos/steam.nix
+++ b/modules/nixos/steam.nix
@@ -6,6 +6,8 @@
programs.steam = {
enable = true;
gamescopeSession.enable = true;
+ extraCompatPackages = with pkgs; [proton-ge-bin];
+ localNetworkGameTransfers.openFirewall = true;
remotePlay.openFirewall = true;
dedicatedServer.openFirewall = true;
};