1
0
Fork 0
dotfiles/home/programs/podman.nix

15 lines
250 B
Nix
Raw Normal View History

2022-06-27 19:38:03 +00:00
{ pkgs, config, ... }:
{
2022-06-28 22:20:41 +00:00
home.packages = with pkgs; [
podman
qemu
skopeo
2022-06-27 19:38:03 +00:00
];
xdg.configFile."containers/containers.conf.d/nix.conf".text = ''
[engine]
helper_binaries_dir = ["${config.home.profileDirectory}/bin"]
'';
}