sops ace + docker fix

This commit is contained in:
Lennart J. Kurzweg (Nx2)
2024-06-03 23:52:44 +02:00
parent aff6992949
commit 4f01013081
7 changed files with 53 additions and 32 deletions

View File

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