feat: Added colima to shiro

This commit is contained in:
uttarayan21
2025-07-26 13:52:58 +05:30
parent a2169e642d
commit f89580fde7
2 changed files with 27 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
{
pkgs,
device,
config,
...
}: {
launchd.agents.colima = {
enable = true;
config = {
# A label for the service
Label = "com.abiosoft.colima";
# The command to run
ProgramArguments = [
"${pkgs.colima}/bin/colima"
"start"
];
# Run the service when you log in
RunAtLoad = true;
# Keep the process alive, or restart if it dies
KeepAlive = false;
# Log files
StandardOutPath = "${config.home.homeDirectory}/Library/Logs/colima.log";
StandardErrorPath = "${config.home.homeDirectory}/Library/Logs/colima.error.log";
};
};
}