feat(elcafe): add new server configuration

This commit is contained in:
2025-11-02 00:00:12 +01:00
parent 2958cc4c7a
commit ef8d666b26
8 changed files with 205 additions and 3 deletions

View File

@@ -9,6 +9,13 @@ with lib; let
in {
options.mySystem.dev.docker = {
enable = mkEnableOption "Enable Docker";
extraDaemonSettings = mkOption {
type = types.nullOr (types.attrsOf types.str);
default = {};
example = {
data-root = "/custom/path";
};
};
podman.enable = mkEnableOption "Enable Podman rather than Docker";
nvidia.enable = mkEnableOption "Activate Nvidia support";
autoprune.enable = mkEnableOption "Enable autoprune";