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

11 lines
121 B
Nix

{
config,
pkgs,
inputs,
...
}: {
virtualisation.docker = {
enable = true;
enableOnBoot = false;
};
}