This commit is contained in:
mtgmonkey
2025-12-28 21:14:06 +01:00
parent 2b0ff45e1a
commit 1a0c214707
4 changed files with 26 additions and 192 deletions

14
iocaine.nix Normal file
View File

@@ -0,0 +1,14 @@
{pkgs, ...}: {
systemd.services.iocaine = {
serviceConfig = {
Type = "simple";
ExecStart = "";
RemainAfterExit = true;
};
wantedBy = ["multi-user.target"];
};
environment.etc."iocaine.lua" = {
text = "";
mode = "664";
};
}