Oliver Davies
6efc4bd51e
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.
6 lines
95 B
Nix
6 lines
95 B
Nix
{
|
|
virtualisation.docker.enable = true;
|
|
|
|
users.users.opdavies.extraGroups = [ "docker" ];
|
|
}
|