15 lines
125 B
Nix
15 lines
125 B
Nix
|
{
|
||
|
# lib,
|
||
|
# pkgs,
|
||
|
config,
|
||
|
# modulesPath,
|
||
|
...
|
||
|
}: {
|
||
|
|
||
|
virtualisation = {
|
||
|
docker = {
|
||
|
enable = true;
|
||
|
};
|
||
|
};
|
||
|
}
|