mirror of
https://github.com/Stunkymonkey/nixos.git
synced 2025-05-24 18:04:41 +02:00
9 lines
135 B
Nix
9 lines
135 B
Nix
![]() |
{ config, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
virtualisation.docker.enable = true;
|
||
|
environment.systemPackages = with pkgs; [
|
||
|
docker_compose
|
||
|
];
|
||
|
}
|