summaryrefslogtreecommitdiff
path: root/services/podman.nix
diff options
context:
space:
mode:
Diffstat (limited to 'services/podman.nix')
-rw-r--r--services/podman.nix10
1 files changed, 10 insertions, 0 deletions
diff --git a/services/podman.nix b/services/podman.nix
new file mode 100644
index 0000000..9e875d1
--- /dev/null
+++ b/services/podman.nix
@@ -0,0 +1,10 @@
+{ config, ... }:
+{
+ virtualisation = {
+ podman = {
+ enable = true;
+ dockerCompat = true;
+ };
+ oci-containers.backend = "podman";
+ };
+}