openttd: init service

This commit is contained in:
Alexandre Cavalheiro 2024-09-11 22:15:18 -03:00
parent 79cce640d5
commit 77663c229f
Signed by: wizardlink
GPG key ID: A5767B54367CFBDF
3 changed files with 27 additions and 0 deletions

View file

@ -18,6 +18,7 @@
./programs/spotify
./programs/tmux
./programs/waybar.nix
./services/openttd.nix
myneovim.homeManagerModules.default
];
@ -110,6 +111,7 @@
winetricks
# Games
openttd
prismlauncher
shattered-pixel-dungeon
xonotic

View file

@ -127,6 +127,7 @@ in
443 # SSL
6567 # Mindustry
80 # HTTP
3979 # OpenTTD
];
allowedUDPPorts = [
@ -135,6 +136,7 @@ in
28910 # Heretic II
6567 # Mindustry
8211 # Palworld
3979 # OpenTTD
];
allowedTCPPortRanges = [

23
services/openttd.nix Normal file
View file

@ -0,0 +1,23 @@
{
pkgs,
...
}:
{
home.packages = with pkgs; [
openttd
];
systemd.user.services.openttd = {
Install.WantedBy = [ "default.target" ];
Unit.Description = "OpenTTD Tmux server";
Service = {
ExecStart = "${pkgs.tmux}/bin/tmux new -s OpenTTD -d '${pkgs.openttd}/bin/openttd -D'";
ExecStop = "${pkgs.tmux}/bin/tmux kill-server";
Restart = "on-failure";
Type = "forking";
};
};
}