updated module directory structure
Check NixOS configurations / eval-hosts (push) Failing after 22m19s

This commit is contained in:
2026-07-13 00:56:19 +10:00
parent 3de625309e
commit 28ae709100
11 changed files with 10 additions and 5 deletions
+23
View File
@@ -0,0 +1,23 @@
{ pkgs, ... }:
{
# 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;
# };
};
environment.systemPackages = with pkgs; [
docker-compose
docker-buildx
];
}