dotfiles/nix/hosts/t490/modules/docker.nix
Oliver Davies 6efc4bd51e t490: add docker
Add Docker which is needed by DDEV, which I need to quickly get HTTP and
SSL running for a project.

There is https://devenv.sh/blog/2023/03/02/devenv-06-generating-containers-and-instant-shell-activation/#hosts-and-certificates
that mentions provisioning certificates for a local domain name, which
is something I'll look at in the future.
2025-01-20 00:50:02 +00:00

6 lines
95 B
Nix

{
virtualisation.docker.enable = true;
users.users.opdavies.extraGroups = [ "docker" ];
}