MyNixOS website logo

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.

Declarations
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;
    };
  };
''