From 2be00d0fff62fb7ef425753e31b01d9a6bb4f015 Mon Sep 17 00:00:00 2001 From: Lillian-Violet Date: Tue, 6 Feb 2024 13:31:04 +0100 Subject: [PATCH] Let's just add a rootless docker --- nixos/hosts/EDI/configuration.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/nixos/hosts/EDI/configuration.nix b/nixos/hosts/EDI/configuration.nix index 1272719..43f8eef 100644 --- a/nixos/hosts/EDI/configuration.nix +++ b/nixos/hosts/EDI/configuration.nix @@ -36,6 +36,16 @@ }; }; + environment.systemPackages = with pkgs; [ + docker + docker-compose + ]; + + virtualisation.docker = { + enable = true; + rootless.enable = true; + }; + networking.hostName = "EDI"; boot.bootspec.enable = true;