From 3e01f14dee12924ea7b122e8fff2cec6875235a7 Mon Sep 17 00:00:00 2001 From: Jake Hillion Date: Fri, 6 Sep 2024 18:41:28 +0100 Subject: [PATCH] boron: enable podman --- hosts/boron.cx.ts.hillion.co.uk/default.nix | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/hosts/boron.cx.ts.hillion.co.uk/default.nix b/hosts/boron.cx.ts.hillion.co.uk/default.nix index 81c1232..a84ff35 100644 --- a/hosts/boron.cx.ts.hillion.co.uk/default.nix +++ b/hosts/boron.cx.ts.hillion.co.uk/default.nix @@ -101,6 +101,18 @@ fileSystems = [ "/data" ]; }; + ## General usability + ### Make podman available for dev tools such as act + virtualisation = { + containers.enable = true; + podman = { + enable = true; + dockerCompat = true; + dockerSocket.enable = true; + }; + }; + users.users.jake.extraGroups = [ "podman" ]; + ## Networking boot.kernel.sysctl = { "net.ipv4.ip_forward" = true;