From a4139d6c9e567bf6150538c7d23f2e9801da8505 Mon Sep 17 00:00:00 2001 From: Lillian-Violet Date: Tue, 6 Feb 2024 14:47:32 +0100 Subject: [PATCH] Replace docker with podman --- nixos/hosts/EDI/configuration.nix | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/nixos/hosts/EDI/configuration.nix b/nixos/hosts/EDI/configuration.nix index b3453ec..c7fd076 100644 --- a/nixos/hosts/EDI/configuration.nix +++ b/nixos/hosts/EDI/configuration.nix @@ -37,16 +37,13 @@ }; environment.systemPackages = with pkgs; [ - docker - docker-compose + podman + podman-compose ]; - virtualisation.docker = { + virtualisation.podman = { enable = true; - rootless = { - enable = true; - setSocketVariable = true; - }; + dockerCompat = true; }; networking.hostName = "EDI";