summaryrefslogtreecommitdiff
path: root/os/srv/oci.nix
diff options
context:
space:
mode:
Diffstat (limited to 'os/srv/oci.nix')
-rw-r--r--os/srv/oci.nix36
1 files changed, 0 insertions, 36 deletions
diff --git a/os/srv/oci.nix b/os/srv/oci.nix
deleted file mode 100644
index ea680fd..0000000
--- a/os/srv/oci.nix
+++ /dev/null
@@ -1,36 +0,0 @@
-{
- config,
- lib,
- pkgs,
- ...
-}:
-let
- cfg = config.os.srv.oci;
-in
-{
- options.os.srv.oci.enable = lib.mkEnableOption "OCI container support via Podman";
- config = lib.mkIf cfg.enable {
- virtualisation = {
- containers = {
- enable = true;
- storage.settings.driver = "zfs";
- };
- podman = {
- enable = true;
- dockerCompat = true;
- defaultNetwork.settings.dns_enabled = true;
- autoPrune = {
- enable = true;
- dates = "weekly";
- flags = [ "--all" ];
- };
- };
- oci-containers.backend = "podman";
- };
-
- environment.systemPackages = with pkgs; [
- podman-tui
- podman-compose
- ];
- };
-}