homelab/nixos/templates/docker.nix
2025-06-03 23:07:46 +02:00

15 lines
245 B
Nix

{ config, pkgs, modulesPath, lib, ... }:
{
# Pull in all the shared settings from configuration.nix
imports = [
./base.nix
];
config = {
environment.systemPackages = with pkgs; [
docker
docker-compose
];
};
}