Files
dotfiles/system-modules/docker.nix
Lennart J. Kurzweg (Nx2) b4586e8661 chmod
2025-01-27 22:17:00 +01:00

22 lines
383 B
Nix

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