13 lines
140 B
Nix
13 lines
140 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
virtualisation.docker = {
|
|
enable = true;
|
|
daemon.settings = {
|
|
experimental = true;
|
|
};
|
|
};
|
|
|
|
|
|
}
|