New server docker

This commit is contained in:
soraefir
2026-05-04 23:04:48 +02:00
parent 1566aca2b8
commit 662424f1d1
10 changed files with 45 additions and 21 deletions

View File

@@ -102,9 +102,15 @@ let
type = types.str;
default = "/media/data";
};
arion = mkOption {
type = types.bool;
default = false;
containers = lib.mkOption {
type = lib.types.attrsOf (lib.types.submodule {
options = {
enable = {type = types.bool;default = false;};
port = lib.mkOption { type = lib.types.port; };
special_param = lib.mkOption { type = lib.types.str; default = ""; };
};
});
default = {};
};
sops = mkOption {
type = types.bool;