You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Note that there seems to be a potential issue with sandboxing: abiosoft/colima#490
There's this one upstream which requests a way to have a LaunchAgent or LaunchDaemon set up by colima but that would not be declarative: abiosoft/colima#262
The text was updated successfully, but these errors were encountered:
launchd.agents."colima.default" = {
command = "${pkgs.colima}/bin/colima start --foreground";
serviceConfig = {
Label = "com.colima.default";
RunAtLoad = true;
KeepAlive = true;
# not sure where to put these paths and not reference a hard-coded `$HOME`; `/var/log`?
StandardOutPath = "/Users/loic.nageleisen/.colima/default/daemon/launchd.stdout.log";
StandardErrorPath = "/Users/loic.nageleisen/.colima/default/daemon/launchd.stderr.log";
# not using launchd.agents.<name>.path because colima needs the system ones as well
EnvironmentVariables = {
PATH = "${pkgs.colima}/bin:${pkgs.docker}/bin:/usr/bin:/bin:/usr/sbin:/sbin";
};
};
};
This would be nice to have:
colima
on macOSvirtualisation.docker.enable = true
: Is virtualisation.docker.enable possible for macOS? #112Note that there seems to be a potential issue with sandboxing: abiosoft/colima#490
There's this one upstream which requests a way to have a
LaunchAgent
orLaunchDaemon
set up bycolima
but that would not be declarative: abiosoft/colima#262The text was updated successfully, but these errors were encountered: