diff --git a/modules/home/development.nix b/modules/home/development.nix index 296c119..9e31fa5 100644 --- a/modules/home/development.nix +++ b/modules/home/development.nix @@ -172,11 +172,24 @@ in { (mkIf cfg.containers.enable { home.packages = with pkgs; [ - colima - docker lazydocker ]; + services.colima = { + enable = true; + profiles.default = { + isActive = true; + isService = true; + settings = { + cpu = 4; + disk = 60; + memory = 8; + arch = "aarch64"; + mountInotify = true; + }; + }; + }; + programs.ssh.includes = [ "~/.colima/ssh_config" ];