This commit is contained in:
Harivansh Rathi 2026-03-25 13:16:19 -04:00
parent 41186b8c17
commit 1d7e28ff72
2 changed files with 29 additions and 0 deletions

28
home/colima.nix Normal file
View file

@ -0,0 +1,28 @@
{
config,
pkgs,
...
}: let
defaultProfile = "default";
in {
home.packages = with pkgs; [
docker-buildx
docker-client
docker-compose
];
services.colima = {
enable = true;
colimaHomeDir = "${config.xdg.configHome}/colima";
dockerPackage = pkgs.docker-client;
profiles.${defaultProfile} = {
isActive = true;
isService = true;
settings = {
runtime = "docker";
vmType = "qemu";
};
};
};
}

View file

@ -1,6 +1,7 @@
{...}: {
imports = [
./common.nix
./colima.nix
./karabiner.nix
./rectangle.nix
];