change docker base storage to be on SSD

This commit is contained in:
2026-03-27 23:00:33 +01:00
parent a6a3b32765
commit 2f940c8094
2 changed files with 7 additions and 4 deletions

View File

@@ -1,5 +1,8 @@
{config, pkgs, ...}@input: {
virtualisation.docker = {
enable = true;
daemon.settings = {
data-root = "/srv/docker";
};
};
}