Files
dotfiles/system-modules/docker.nix
Lennart J. Kurzweg (Nx2) d2d1ce7830 overlays refactor
2025-06-17 19:48:31 +02:00

22 lines
389 B
Nix

{ pkgs, ... }@all: with all;
{
environment.systemPackages = with pkgs; [
lazydocker
docker-compose-language-service
];
virtualisation.docker = {
enable = true;
# daemon.settings = {
# vpnKitMaxPortIdleTime = 0;
# };
};
users.users."${hyper.user}".extraGroups = [ "docker" ];
networking.firewall.allowedTCPPorts = [
80
443
8384
];
}