From 93b757b915c7b4a27d2eed2cb539e44461ad6e8a Mon Sep 17 00:00:00 2001 From: Natsu Kagami Date: Tue, 2 May 2023 16:07:18 +0200 Subject: [PATCH] Install podman on darwin --- darwin/configuration.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/darwin/configuration.nix b/darwin/configuration.nix index fb69b98..db2df03 100644 --- a/darwin/configuration.nix +++ b/darwin/configuration.nix @@ -8,7 +8,7 @@ # List packages installed in system profile. To search by name, run: # $ nix-env -qaP | grep wget environment.systemPackages = - [ ]; + with pkgs; [ podman qemu ]; environment.shells = with pkgs; [ fish ];