Skip to content

Commit

Permalink
Add macOS virtualisation config
Browse files Browse the repository at this point in the history
Just need to run `colima start` once on boot.
Better than the behemoth that is Docker Desktop.

I'm not using Podman on macOS due to:
  NixOS/nixpkgs#169118
  • Loading branch information
samhh committed Mar 28, 2024
1 parent b54da65 commit efa70dd
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
1 change: 1 addition & 0 deletions home/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,6 @@
./editor.nix
./shell.nix
./vcs.nix
./virt.nix
];
}
8 changes: 8 additions & 0 deletions home/virt.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{ pkgs, ... }:

{
home.packages = with pkgs; [
colima
docker
];
}

0 comments on commit efa70dd

Please sign in to comment.