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