1
0

fix: add podman to shell.nix

This commit is contained in:
2023-05-16 09:22:37 +00:00
parent 046c553ed5
commit 4fd2fd31d2

View File

@ -1,5 +1,5 @@
{ pkgs ? import <nixpkgs> {} }:
with pkgs; mkShell {
packages = [ go gcc qemu ];
packages = [ go gcc qemu podman ];
}