1
0
mirror of https://github.com/kmein/niveum synced 2026-03-16 10:11:08 +01:00

gaming: init more

This commit is contained in:
2025-12-14 18:19:33 +01:00
parent 18603a5682
commit 9ff500bb37
3 changed files with 14 additions and 9 deletions

View File

@@ -1,8 +0,0 @@
{ pkgs, ... }:
{
environment.systemPackages = [ pkgs.zeroad ];
networking.firewall = {
allowedTCPPorts = [ 20595 ];
allowedUDPPorts = [ 20595 ];
};
}

13
configs/gaming.nix Normal file
View File

@@ -0,0 +1,13 @@
{ pkgs, ... }:
{
environment.systemPackages = [
pkgs.zeroad
pkgs.mari0
pkgs.luanti # fka minetest
];
networking.firewall = {
# for 0ad multiplayer
allowedTCPPorts = [ 20595 ];
allowedUDPPorts = [ 20595 ];
};
}

View File

@@ -9,7 +9,7 @@ in {
./hardware-configuration.nix
../../configs/networkmanager.nix
../../configs/default.nix
../../configs/0ad.nix
../../configs/gaming.nix
# ../../configs/gnome.nix
];