feat(nixos): add mindustry module

Also enable it for `jeeves`
This commit is contained in:
reo101 2023-12-07 21:18:20 +02:00
parent 9f655ce1e9
commit e3524e4777
Signed by: reo101
GPG key ID: 675AA7EF13964ACB
3 changed files with 131 additions and 0 deletions

View file

@ -8,6 +8,7 @@
./network.nix
./wireguard.nix
./jellyfin.nix
./mindustry.nix
];
nixpkgs = {

View file

@ -0,0 +1,6 @@
{ lib, pkgs, config, ... }:
{
reo101.mindustry = {
enable = true;
};
}