Update NixOS config.

This commit is contained in:
Elias Gasparis 2025-01-05 08:47:22 +08:00
parent 4a31bf6aa2
commit fc8352ee4c

View file

@ -1,7 +1,16 @@
{ config, pkgs, ... }: { pkgs, lib, config, ... }:
# enable docker
# not all systems need this
{ {
options = {
};
config = {
# Enable Docker
virtualisation.docker.enable = true;
};
} }