From 79adc3dfe53c6687f75b665c3e4bebc60105200b Mon Sep 17 00:00:00 2001 From: minco Date: Mon, 27 Jul 2026 20:25:45 +0900 Subject: [PATCH] change podman storage dir --- configuration.nix | 4 +++- pkgs/util.nix | 1 + services/virtual.nix | 8 ++++++++ 3 files changed, 12 insertions(+), 1 deletion(-) diff --git a/configuration.nix b/configuration.nix index 393c110..d238ba4 100644 --- a/configuration.nix +++ b/configuration.nix @@ -34,6 +34,8 @@ in "qtwebkit-5.212.0-alpha4" ]; + services.tailscale.enable = true; + services.nfs.server = { enable = true; exports = '' @@ -60,7 +62,7 @@ in #"192.168.1.165" = [ "walruslab.org" ]; }; - services.netbird.enable = true; + services.netbird.enable = false; # Enable NAT so the container can reach the Debian repos networking.nat = { diff --git a/pkgs/util.nix b/pkgs/util.nix index fc71f08..85735a1 100644 --- a/pkgs/util.nix +++ b/pkgs/util.nix @@ -150,4 +150,5 @@ with pkgs; kubevirt bubblewrap + pv-migrate ] diff --git a/services/virtual.nix b/services/virtual.nix index 836a05b..4e83d66 100644 --- a/services/virtual.nix +++ b/services/virtual.nix @@ -4,6 +4,14 @@ { virtualisation = { containers.enable = true; + containers.storage.settings = { + storage = { + driver = "overlay"; + graphroot = "/mnt/ssd1/podman"; + rootless_storage_path = "/mnt/ssd1/podman"; + }; + }; + podman = { enable = true; dockerCompat = true;