NixToSee/modules/game/server/luanti/olivetin.nix
2025-06-01 22:11:55 +02:00

19 lines
323 B
Nix

{ pkgs, ... }: {
services.olivetin = {
enable = true;
settings = {
actions = [
{
title = "Hello world!";
shell = "echo 'Hello World!'";
popupOnStart = "execution-dialog-stdout-only";
}
];
};
path = with pkgs; [
bash
git
];
};
}