14 lines
175 B
Nix
14 lines
175 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
# Docker
|
|
virtualisation.docker = {
|
|
enable = true;
|
|
enableOnBoot = true;
|
|
};
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
ddev
|
|
];
|
|
}
|