{ pkgs, ... }: { environment.systemPackages = with pkgs; [ # Virtualisation docker-compose # docker-compose alternative dive # docker layer viewer tailscale # Vpn ]; # Virtualisation virtualisation = { containers.enable = true; docker = { enable = true; rootless = { enable = true; setSocketVariable = true; }; }; oci-containers = { backend = "docker"; containers = { /* container-name = { image = "image"; autoStart = true; ports = [ "127.0.0.1:1234:1234" ]; }; */ }; }; }; }