old-nixos-greynix/nixosModules/test.nix

17 lines
179 B
Nix
Raw Normal View History

2025-01-05 08:47:22 +08:00
{ pkgs, lib, config, ... }:
# enable docker
# not all systems need this
2025-01-05 08:44:34 +08:00
{
2025-01-05 08:47:22 +08:00
options = {
2025-01-05 08:44:34 +08:00
2025-01-05 08:47:22 +08:00
};
config = {
# Enable Docker
virtualisation.docker.enable = true;
};
2025-01-05 08:44:34 +08:00
}