summaryrefslogtreecommitdiff
path: root/services
diff options
context:
space:
mode:
authorKenny Ballou <kballou@devnulllabs.io>2021-01-21 13:12:29 -0700
committerKenny Ballou <kballou@devnulllabs.io>2021-01-21 13:12:29 -0700
commit471054c32e3b64214fd7212eafb2ca2cbe18e3e8 (patch)
tree1530162bc8c0e5ea354f0cc229d014f8c14d7195 /services
parentbf4c3b2b19909b46ed8a129a2f356758a98f5c52 (diff)
downloadcfg.nix-471054c32e3b64214fd7212eafb2ca2cbe18e3e8.tar.gz
cfg.nix-471054c32e3b64214fd7212eafb2ca2cbe18e3e8.tar.xz
services: add podman configuration
Signed-off-by: Kenny Ballou <kballou@devnulllabs.io>
Diffstat (limited to 'services')
-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";
+ };
+}