old-nixos-greynix/nixosModules/test.nix
2025-01-05 08:47:22 +08:00

16 lines
179 B
Nix

{ pkgs, lib, config, ... }:
# enable docker
# not all systems need this
{
options = {
};
config = {
# Enable Docker
virtualisation.docker.enable = true;
};
}