wip: add first olivetin tests

This commit is contained in:
Ranomier 2025-06-01 22:11:55 +02:00
parent 09946b885a
commit e4fabdb3cb
3 changed files with 20 additions and 3 deletions

View file

@ -1,3 +0,0 @@
{pkgs, ...}: {
}

View file

@ -2,6 +2,7 @@
imports = [ imports = [
./luanti.nix ./luanti.nix
#./mods.nix #./mods.nix
./olivetin.nix
./postgresql.nix ./postgresql.nix
]; ];
} }

View file

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