marleyos/modules/nixos/services/docker/default.nix

14 lines
233 B
Nix
Raw Normal View History

2025-02-18 20:36:28 +00:00
{
lib,
config,
...
}: let
cfg = config.marleyos.services.docker;
in {
options.marleyos.services.docker.enable = lib.mkEnableOption "docker";
config = lib.mkIf cfg.enable {
virtualisation.docker.enable = true;
};
}