Files
system-configuration/iocaine.nix
mtgmonkey 1a0c214707 fin
2025-12-28 21:14:06 +01:00

15 lines
269 B
Nix

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