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.nix23
1 files changed, 14 insertions, 9 deletions
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