NixOS/system/modules/docker.nix

10 lines
143 B
Nix
Raw Normal View History

2024-06-12 09:54:11 +07:00
{ config, lib, ... }:
let
cfg = config.profile.docker;
in
{
config = lib.mkIf cfg.enable {
virtualisation.docker.enable = true;
};
}