Update modules/shared/syscfg/default.nix

This commit is contained in:
2026-06-04 17:29:06 +02:00
parent a8f730b4af
commit 809dd65eb0

View File

@@ -28,6 +28,10 @@ in with lib; {
type = types.oneOf [ types.bool (types.submodule { options = import ./server.nix {inherit lib;}; }) ];
default = false;
};
media = mkOption {
type = types.submodule { options = import ./media.nix { inherit lib; }; };
default = {};
};
extra = import ./extra.nix {inherit lib;};
};
}