From fc8352ee4c9c757e58804e0ce42184762cf66750 Mon Sep 17 00:00:00 2001 From: tootbrute Date: Sun, 5 Jan 2025 08:47:22 +0800 Subject: [PATCH] Update NixOS config. --- nixosModules/test.nix | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/nixosModules/test.nix b/nixosModules/test.nix index d9b266a..317ca25 100644 --- a/nixosModules/test.nix +++ b/nixosModules/test.nix @@ -1,7 +1,16 @@ -{ config, pkgs, ... }: +{ pkgs, lib, config, ... }: +# enable docker +# not all systems need this { + options = { + }; + + config = { + # Enable Docker + virtualisation.docker.enable = true; + }; }