modularized docker service
Check NixOS configurations / eval-hosts (push) Failing after 23m17s

This commit is contained in:
2026-07-13 00:30:10 +10:00
parent 529a518cd1
commit 5d5428014a
2 changed files with 24 additions and 15 deletions
+18
View File
@@ -0,0 +1,18 @@
{ ... }:
{
# virtualisation.docker.enable = true;
virtualisation.docker = {
enable = true;
package = pkgs.docker;
# listenOptions = [
# "unix:///var/run/docker.sock"
# "tcp://0.0.0.0:2375"
#];
# daemon.settings = {
# metrics-addr = "0.0.0.0:9323";
# experimental = true;
# };
};
}