From c425b456f139e6920a341c27161a25ea2b8c4112 Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Tue, 11 Oct 2022 21:18:59 +0200 Subject: [PATCH] hades: add docker and docker-compose --- hosts/hades/default.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/hosts/hades/default.nix b/hosts/hades/default.nix index a0bb987..bead92d 100644 --- a/hosts/hades/default.nix +++ b/hosts/hades/default.nix @@ -92,6 +92,12 @@ in { services.openssh.permitRootLogin = "no"; services.openssh.passwordAuthentication = false; + virtualisation.docker.enable = true; + + environment.systemPackages = with pkgs; [ + docker-compose + ]; + # Takes a long while to build documentation.nixos.enable = false; }