15 lines
269 B
Nix
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";
|
|
};
|
|
}
|