0ad 0.0.24

This commit is contained in:
Charlotte Van Petegem 2021-02-24 18:06:32 +01:00
parent 54b7e7f371
commit b5ee907e15
No known key found for this signature in database
GPG key ID: 019E764B7184435A
3 changed files with 23 additions and 8 deletions

View file

@ -1,4 +1,4 @@
{ config, lib, pkgs, ... }:
{ config, lib, pkgs, pkgsFor0AD, ... }:
{
options = {
@ -19,13 +19,9 @@
{ path = ".config/0ad"; type = "cache"; }
];
nixpkgs.config.permittedInsecurePackages = [
"spidermonkey-38.8.0"
];
hardware.opengl.enable = true;
home-manager.users.charlotte = { pkgs, ... }: {
home.packages = [ pkgs.zeroad ];
home.packages = [ pkgsFor0AD.zeroad ];
};
networking.firewall = lib.mkIf config.chvp.zeroad.asServer {
allowedTCPPorts = [ 20595 ];