Commit 9dc17e65a733

Vincent Demeester <vincent@sbr.pm>
2025-10-15 09:54:54
systems/containers: add podman-bootc and virtiofsd
- podman-bootc is to test things with bootc - virtiofsd is for podman machine to work Signed-off-by: Vincent Demeester <vincent@sbr.pm>
1 parent b5f0016
Changed files (1)
systems
common
systems/common/services/containers.nix
@@ -1,6 +1,20 @@
-_: {
+{
+  pkgs,
+  ...
+}:
+{
   networking.firewall.checkReversePath = false;
-  virtualisation.podman.enable = true;
+  virtualisation.podman = {
+    enable = true;
+    extraPackages = with pkgs; [
+      podman-bootc
+      virtiofsd
+    ];
+  };
+  environment.systemPackages = with pkgs; [
+    podman-bootc
+    bootc
+  ];
   virtualisation.containers = {
     enable = true;
     registries = {