1
0
Fork 0
dotfiles/programs/podman.nix
2022-06-29 00:20:41 +02:00

15 lines
250 B
Nix

{ pkgs, config, ... }:
{
home.packages = with pkgs; [
podman
qemu
skopeo
];
xdg.configFile."containers/containers.conf.d/nix.conf".text = ''
[engine]
helper_binaries_dir = ["${config.home.profileDirectory}/bin"]
'';
}