From 1c20cc332697ddd2124fae27dbb04fdc4eb7d239 Mon Sep 17 00:00:00 2001 From: Hektor Misplon Date: Sun, 22 Feb 2026 13:25:17 +0100 Subject: [PATCH] feat: add basic 'gaming' module to 'andromache' --- hosts/andromache/default.nix | 1 + modules/gaming/default.nix | 12 ++++++++++++ 2 files changed, 13 insertions(+) create mode 100644 modules/gaming/default.nix diff --git a/hosts/andromache/default.nix b/hosts/andromache/default.nix index 4ae0874..b0aa689 100644 --- a/hosts/andromache/default.nix +++ b/hosts/andromache/default.nix @@ -27,6 +27,7 @@ in ../../modules/desktops/niri ../../modules/backups ../../modules/bluetooth + ../../modules/gaming ../../modules/keyboard (import ../../modules/networking { inherit hostName; }) ../../modules/users diff --git a/modules/gaming/default.nix b/modules/gaming/default.nix new file mode 100644 index 0000000..1b9754a --- /dev/null +++ b/modules/gaming/default.nix @@ -0,0 +1,12 @@ +{ + nixpkgs.allowedUnfree = [ + "steam" + "steam-unwrapped" + ]; + + programs.steam = { + enable = true; + remotePlay.openFirewall = false; + dedicatedServer.openFirewall = false; + }; +}