diff --git a/configuration.nix b/configuration.nix index 634538d..5b4234f 100644 --- a/configuration.nix +++ b/configuration.nix @@ -26,7 +26,7 @@ ./keepalived.nix ./wireguard.nix ./docker.nix - ./docker-device-mapper.nix + ./docker-device-mapper.nix ]; # Use the systemd-boot EFI boot loader and enable that sweet zfs stuff. @@ -98,6 +98,7 @@ # zrepl wireguard-tools unison + seaweedfs ]; programs.tmux = { diff --git a/docker.nix b/docker.nix index 3002dc5..1224d11 100644 --- a/docker.nix +++ b/docker.nix @@ -6,9 +6,12 @@ dates = "daily"; }; daemon.settings = { - data-root = "/data/docker"; + data-root = "/var/lib/docker"; + # data-root = "/data/docker"; }; liveRestore = false; - package = pkgs.docker_27; + package = pkgs.docker_28; + }; } +