This commit is contained in:
2025-04-11 07:44:12 +02:00
commit b2186d35a0
13 changed files with 479 additions and 0 deletions

11
docker.nix Normal file
View File

@ -0,0 +1,11 @@
{ pkgs, ... }: {
virtualisation.docker = {
enable = true;
autoPrune = {
enable = true;
dates = "daily";
};
liveRestore = false;
package = pkgs.docker_27;
};
}