Files
nix-config/server/modules/docker.nix
2023-10-27 09:53:28 +02:00

7 lines
156 B
Nix

{ config, pkgs, lib, inputs, ... }:
{
virtualisation.docker.enable = true;
environment.systemPackages = with pkgs; [
docker-compose
];
}