From 89d7829169395601307db3b4e3c4ba7feb03f6d4 Mon Sep 17 00:00:00 2001 From: Timothy DeHerrera Date: Fri, 25 Dec 2020 15:57:47 -0700 Subject: [PATCH] virt: use docker alias so completion works --- profiles/virt/default.nix | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/profiles/virt/default.nix b/profiles/virt/default.nix index 1e775175..8ac5b10a 100644 --- a/profiles/virt/default.nix +++ b/profiles/virt/default.nix @@ -9,18 +9,14 @@ ]; }; - podman = { - enable = true; - dockerCompat = true; - }; - + podman.enable = true; oci-containers.backend = "podman"; - }; # you'll need to add your user to 'libvirtd' group to use virt-manager environment.systemPackages = with pkgs; [ virt-manager vagrant ]; + environment.shellAliases.docker = "podman"; environment.sessionVariables = { VAGRANT_DEFAULT_PROVIDER = "libvirt";