Change in folders organisation

This commit is contained in:
Laurent Gueret
2026-01-29 11:04:36 +01:00
parent 4d824e2be1
commit 7dfad1672f
25 changed files with 48 additions and 112 deletions
@@ -0,0 +1,18 @@
{ lib, config, ... }:
with lib;
let
cfg = config.os.virtualisation.docker;
in
{
options.os.virtualisation.docker = {
enable = mkEnableOption "System docker service";
};
config = mkIf cfg.enable {
virtualisation.docker = {
enable = true;
daemon.settings.features.cdi = true;
};
};
}