From c6b6a3e6c702834eac2b633db2ed4c397b4ae113 Mon Sep 17 00:00:00 2001 From: adikro Date: Mon, 18 May 2026 15:25:50 +0200 Subject: set up disko, zfs, clamav aide, backup, nfs, zfs for oci and ups --- os/srv/oci.nix | 23 ++++++++++++++--------- 1 file changed, 14 insertions(+), 9 deletions(-) (limited to 'os/srv/oci.nix') diff --git a/os/srv/oci.nix b/os/srv/oci.nix index 0d781a7..ea680fd 100644 --- a/os/srv/oci.nix +++ b/os/srv/oci.nix @@ -10,19 +10,24 @@ in { options.os.srv.oci.enable = lib.mkEnableOption "OCI container support via Podman"; config = lib.mkIf cfg.enable { - virtualisation.podman = { - enable = true; - dockerCompat = true; - defaultNetwork.settings.dns_enabled = true; - autoPrune = { + virtualisation = { + containers = { enable = true; - dates = "weekly"; - flags = [ "--all" ]; + 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"; }; - virtualisation.oci-containers.backend = "podman"; - environment.systemPackages = with pkgs; [ podman-tui podman-compose -- cgit v1.3