services.colima.profiles

Profiles allow multiple colima configurations. The default profile is active by default. If you have used colima before, you may need to delete existing configuration using colima delete or use a different profile.

Note that removing a configured profile will not delete the corresponding Colima instance. You will need to manually run colima delete <profile-name> to remove the instance and release resources.

Type
attribute set of (submodule)
Default
{
  default = {
    isActive = true;
    isService = true;
  };
}
Example
''
  {
    default = {
      isActive = true;
      isService = true;
    };
    rosetta = {
      isService = true;
      settings.rosetta = true;
    };
    powerful = {
      settings.cpu = 8;
    };
  };
''
Declared
<home-manager/modules/services/colima.nix>